├── .gitignore ├── LICENSE ├── README.md ├── container_types.py ├── main.py ├── main.spec ├── savefile_types.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | 4 | .idea 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/README.md -------------------------------------------------------------------------------- /container_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/container_types.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/main.spec -------------------------------------------------------------------------------- /savefile_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/savefile_types.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarukaMa/starfield-xgp-import/HEAD/utils.py --------------------------------------------------------------------------------