├── .github ├── ISSUE_TEMPLATE │ └── new-game-support-request.md └── workflows │ └── pyinstaller.yml ├── .gitignore ├── LICENSE ├── README.md ├── games.json └── main.py /.github/ISSUE_TEMPLATE/new-game-support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/.github/ISSUE_TEMPLATE/new-game-support-request.md -------------------------------------------------------------------------------- /.github/workflows/pyinstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/.github/workflows/pyinstaller.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/README.md -------------------------------------------------------------------------------- /games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/games.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z1ni/XGP-save-extractor/HEAD/main.py --------------------------------------------------------------------------------