├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── clean.py ├── extractAllRPAs.py ├── grabGame.py ├── mergeChanges.py ├── requirements.bat └── setup.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/clean.py -------------------------------------------------------------------------------- /extractAllRPAs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/extractAllRPAs.py -------------------------------------------------------------------------------- /grabGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/grabGame.py -------------------------------------------------------------------------------- /mergeChanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/mergeChanges.py -------------------------------------------------------------------------------- /requirements.bat: -------------------------------------------------------------------------------- 1 | pip install six -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plyrthn/DDLC-Toolkit/HEAD/setup.bat --------------------------------------------------------------------------------