├── .gitignore ├── LICENSE ├── README.md ├── bcn ├── __init__.py ├── decompress_.py └── decompress_cy.pyx ├── bntx.py ├── bntx_editor.py ├── bytes.py ├── dds.py ├── formConv.py ├── formConv_cy.pyx ├── globals.py ├── icon.ico ├── structs.py ├── swizzle.py └── swizzle_cy.pyx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/README.md -------------------------------------------------------------------------------- /bcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bcn/__init__.py -------------------------------------------------------------------------------- /bcn/decompress_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bcn/decompress_.py -------------------------------------------------------------------------------- /bcn/decompress_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bcn/decompress_cy.pyx -------------------------------------------------------------------------------- /bntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bntx.py -------------------------------------------------------------------------------- /bntx_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bntx_editor.py -------------------------------------------------------------------------------- /bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/bytes.py -------------------------------------------------------------------------------- /dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/dds.py -------------------------------------------------------------------------------- /formConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/formConv.py -------------------------------------------------------------------------------- /formConv_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/formConv_cy.pyx -------------------------------------------------------------------------------- /globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/globals.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/icon.ico -------------------------------------------------------------------------------- /structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/structs.py -------------------------------------------------------------------------------- /swizzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/swizzle.py -------------------------------------------------------------------------------- /swizzle_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboood40091/BNTX-Editor/HEAD/swizzle_cy.pyx --------------------------------------------------------------------------------