├── .gitignore ├── .vs ├── GeckoLoader │ └── v16 │ │ ├── .suo │ │ └── Browse.VC.db ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── GeckoLoader.py ├── LICENSE ├── README.md ├── bin ├── codehandler.bin ├── geckoloader.bin └── icon.ico ├── children_ui.py ├── dolreader.py ├── fileutils.py ├── kernel.py ├── loader.cpp ├── main_ui.py ├── setup.py ├── tools.py └── versioncheck.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/GeckoLoader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/.vs/GeckoLoader/v16/.suo -------------------------------------------------------------------------------- /.vs/GeckoLoader/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/.vs/GeckoLoader/v16/Browse.VC.db -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": "No Configurations" 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /GeckoLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/GeckoLoader.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/README.md -------------------------------------------------------------------------------- /bin/codehandler.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/bin/codehandler.bin -------------------------------------------------------------------------------- /bin/geckoloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/bin/geckoloader.bin -------------------------------------------------------------------------------- /bin/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/bin/icon.ico -------------------------------------------------------------------------------- /children_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/children_ui.py -------------------------------------------------------------------------------- /dolreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/dolreader.py -------------------------------------------------------------------------------- /fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/fileutils.py -------------------------------------------------------------------------------- /kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/kernel.py -------------------------------------------------------------------------------- /loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/loader.cpp -------------------------------------------------------------------------------- /main_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/main_ui.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/setup.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/tools.py -------------------------------------------------------------------------------- /versioncheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshuaMKW/GeckoLoader/HEAD/versioncheck.py --------------------------------------------------------------------------------