├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── __init__.py ├── lithtech_dat_import.py ├── test.h ├── test.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/__init__.py -------------------------------------------------------------------------------- /lithtech_dat_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/lithtech_dat_import.py -------------------------------------------------------------------------------- /test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/test.h -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoschur/blender-lithtech-dat-import/HEAD/utils.py --------------------------------------------------------------------------------