├── .gitignore ├── LICENSE ├── README.md ├── SCsub ├── config.py ├── doc_classes ├── ErrorReporter.xml └── TabletopImporter.xml ├── error_reporter.cpp ├── error_reporter.h ├── register_types.cpp ├── register_types.h ├── tabletop_importer.cpp └── tabletop_importer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/config.py -------------------------------------------------------------------------------- /doc_classes/ErrorReporter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/doc_classes/ErrorReporter.xml -------------------------------------------------------------------------------- /doc_classes/TabletopImporter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/doc_classes/TabletopImporter.xml -------------------------------------------------------------------------------- /error_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/error_reporter.cpp -------------------------------------------------------------------------------- /error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/error_reporter.h -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/register_types.h -------------------------------------------------------------------------------- /tabletop_importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/tabletop_importer.cpp -------------------------------------------------------------------------------- /tabletop_importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwhut/tabletop_club_godot_module/HEAD/tabletop_importer.h --------------------------------------------------------------------------------