├── .gitattributes ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── BalatroUnsteamed.sln ├── BalatroUnsteamed.vcxproj ├── BalatroUnsteamed.vcxproj.filters ├── Console.h ├── HookInstaller.h ├── README.md ├── Trampoline.h ├── dllmain.cpp ├── exports.txt └── py ├── meta.jkr ├── profile.jkr ├── profileDumpedOrig.txt ├── profileEdit.py ├── profileNEW.jkr ├── profileOLD.jkr ├── save.jkr └── settings.jkr /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/.gitignore -------------------------------------------------------------------------------- /BalatroUnsteamed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/BalatroUnsteamed.sln -------------------------------------------------------------------------------- /BalatroUnsteamed.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/BalatroUnsteamed.vcxproj -------------------------------------------------------------------------------- /BalatroUnsteamed.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/BalatroUnsteamed.vcxproj.filters -------------------------------------------------------------------------------- /Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/Console.h -------------------------------------------------------------------------------- /HookInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/HookInstaller.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/README.md -------------------------------------------------------------------------------- /Trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/Trampoline.h -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/exports.txt -------------------------------------------------------------------------------- /py/meta.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/meta.jkr -------------------------------------------------------------------------------- /py/profile.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/profile.jkr -------------------------------------------------------------------------------- /py/profileDumpedOrig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/profileDumpedOrig.txt -------------------------------------------------------------------------------- /py/profileEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/profileEdit.py -------------------------------------------------------------------------------- /py/profileNEW.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/profileNEW.jkr -------------------------------------------------------------------------------- /py/profileOLD.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/profileOLD.jkr -------------------------------------------------------------------------------- /py/save.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/save.jkr -------------------------------------------------------------------------------- /py/settings.jkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-k0/BalatroUnsteamed/HEAD/py/settings.jkr --------------------------------------------------------------------------------