mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-25 15:18:28 +02:00
24 lines
912 B
Python
24 lines
912 B
Python
from dungeonsheets.features.features import Feature, create_feature, all_features
|
|
|
|
from dungeonsheets.features.artificer import *
|
|
from dungeonsheets.features.backgrounds import *
|
|
from dungeonsheets.features.barbarian import *
|
|
from dungeonsheets.features.bard import *
|
|
from dungeonsheets.features.cleric import *
|
|
from dungeonsheets.features.druid import *
|
|
from dungeonsheets.features.feats import *
|
|
from dungeonsheets.features.fighter import *
|
|
from dungeonsheets.features.monk import *
|
|
from dungeonsheets.features.paladin import *
|
|
from dungeonsheets.features.races import *
|
|
from dungeonsheets.features.ranger import *
|
|
from dungeonsheets.features.rogue import *
|
|
from dungeonsheets.features.sorceror import *
|
|
from dungeonsheets.features.warlock import *
|
|
from dungeonsheets.features.wizard import *
|
|
|
|
from dungeonsheets.content_registry import default_content_registry
|
|
|
|
|
|
default_content_registry.add_module(__name__)
|