mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-21 05:23:26 +02:00
25 lines
961 B
Python
25 lines
961 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.bloodhunter 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__)
|