├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── VerifyPg ├── Entry.c ├── Include.h ├── Memory.c ├── Memory.h ├── VerifyPg.inf ├── VerifyPg.vcxproj └── VerifyPg.vcxproj.filters ├── assets └── proof.png ├── kurasagi.sln └── kurasagi ├── Entry.cpp ├── Global.cpp ├── Global.hpp ├── Include.hpp ├── Log.hpp ├── Module.cpp ├── Module.hpp ├── Module ├── Barricade.cpp ├── Barricade.hpp ├── Context7.cpp ├── Context7.hpp ├── Misc.cpp ├── Misc.hpp ├── Timer.cpp └── Timer.hpp ├── Util ├── Arith.cpp ├── Arith.hpp ├── Memory.cpp └── Memory.hpp ├── kurasagi.inf ├── kurasagi.vcxproj └── kurasagi.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/README.md -------------------------------------------------------------------------------- /VerifyPg/Entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/Entry.c -------------------------------------------------------------------------------- /VerifyPg/Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/Include.h -------------------------------------------------------------------------------- /VerifyPg/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/Memory.c -------------------------------------------------------------------------------- /VerifyPg/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/Memory.h -------------------------------------------------------------------------------- /VerifyPg/VerifyPg.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/VerifyPg.inf -------------------------------------------------------------------------------- /VerifyPg/VerifyPg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/VerifyPg.vcxproj -------------------------------------------------------------------------------- /VerifyPg/VerifyPg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/VerifyPg/VerifyPg.vcxproj.filters -------------------------------------------------------------------------------- /assets/proof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/assets/proof.png -------------------------------------------------------------------------------- /kurasagi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi.sln -------------------------------------------------------------------------------- /kurasagi/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Entry.cpp -------------------------------------------------------------------------------- /kurasagi/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Global.cpp -------------------------------------------------------------------------------- /kurasagi/Global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Global.hpp -------------------------------------------------------------------------------- /kurasagi/Include.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Include.hpp -------------------------------------------------------------------------------- /kurasagi/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Log.hpp -------------------------------------------------------------------------------- /kurasagi/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module.cpp -------------------------------------------------------------------------------- /kurasagi/Module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module.hpp -------------------------------------------------------------------------------- /kurasagi/Module/Barricade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Barricade.cpp -------------------------------------------------------------------------------- /kurasagi/Module/Barricade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Barricade.hpp -------------------------------------------------------------------------------- /kurasagi/Module/Context7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Context7.cpp -------------------------------------------------------------------------------- /kurasagi/Module/Context7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Context7.hpp -------------------------------------------------------------------------------- /kurasagi/Module/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Misc.cpp -------------------------------------------------------------------------------- /kurasagi/Module/Misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Misc.hpp -------------------------------------------------------------------------------- /kurasagi/Module/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Timer.cpp -------------------------------------------------------------------------------- /kurasagi/Module/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Module/Timer.hpp -------------------------------------------------------------------------------- /kurasagi/Util/Arith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Util/Arith.cpp -------------------------------------------------------------------------------- /kurasagi/Util/Arith.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Util/Arith.hpp -------------------------------------------------------------------------------- /kurasagi/Util/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Util/Memory.cpp -------------------------------------------------------------------------------- /kurasagi/Util/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/Util/Memory.hpp -------------------------------------------------------------------------------- /kurasagi/kurasagi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/kurasagi.inf -------------------------------------------------------------------------------- /kurasagi/kurasagi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/kurasagi.vcxproj -------------------------------------------------------------------------------- /kurasagi/kurasagi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoMaster831/kurasagi/HEAD/kurasagi/kurasagi.vcxproj.filters --------------------------------------------------------------------------------