├── .gitignore ├── DashEditor.py ├── DashEditor_insert.tbl ├── Formats ├── BIN.py ├── FONT.py ├── MSG.py └── TIM.py ├── README.md ├── compress.bat └── extract.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /DashEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/DashEditor.py -------------------------------------------------------------------------------- /DashEditor_insert.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/DashEditor_insert.tbl -------------------------------------------------------------------------------- /Formats/BIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/Formats/BIN.py -------------------------------------------------------------------------------- /Formats/FONT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/Formats/FONT.py -------------------------------------------------------------------------------- /Formats/MSG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/Formats/MSG.py -------------------------------------------------------------------------------- /Formats/TIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/Formats/TIM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/README.md -------------------------------------------------------------------------------- /compress.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/compress.bat -------------------------------------------------------------------------------- /extract.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmbraRD/DashEditor/HEAD/extract.bat --------------------------------------------------------------------------------