├── .gitignore ├── LICENSE ├── README.md ├── bsp2obj ├── __init__.py ├── bsp.py ├── command_line.py ├── constants.py ├── helpers.py ├── image.py └── pak.py ├── logo.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/README.md -------------------------------------------------------------------------------- /bsp2obj/__init__.py: -------------------------------------------------------------------------------- 1 | from bsp2obj.bsp import * -------------------------------------------------------------------------------- /bsp2obj/bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/bsp.py -------------------------------------------------------------------------------- /bsp2obj/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/command_line.py -------------------------------------------------------------------------------- /bsp2obj/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/constants.py -------------------------------------------------------------------------------- /bsp2obj/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/helpers.py -------------------------------------------------------------------------------- /bsp2obj/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/image.py -------------------------------------------------------------------------------- /bsp2obj/pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/bsp2obj/pak.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/logo.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/measuredweighed/BSP2OBJ/HEAD/setup.py --------------------------------------------------------------------------------