├── .gitattributes ├── .gitignore ├── CTHackFramework.sln ├── CTHackFramework ├── CTHackFramework.vcxproj ├── CTHackFramework.vcxproj.filters ├── Game │ ├── GameData.c │ ├── GameData.h │ └── GameStruct.h ├── Manager │ └── Manager.h ├── Memory │ └── Memory.h ├── Process │ ├── Process.cpp │ └── Process.h └── Util │ ├── ConsoleColor.h │ ├── Logger.cpp │ ├── Logger.h │ └── StringManipulation.h ├── License.md ├── README.md └── res ├── arch.png └── logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /CTHackFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework.sln -------------------------------------------------------------------------------- /CTHackFramework/CTHackFramework.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/CTHackFramework.vcxproj -------------------------------------------------------------------------------- /CTHackFramework/CTHackFramework.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/CTHackFramework.vcxproj.filters -------------------------------------------------------------------------------- /CTHackFramework/Game/GameData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Game/GameData.c -------------------------------------------------------------------------------- /CTHackFramework/Game/GameData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Game/GameData.h -------------------------------------------------------------------------------- /CTHackFramework/Game/GameStruct.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CTHackFramework/Manager/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Manager/Manager.h -------------------------------------------------------------------------------- /CTHackFramework/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Memory/Memory.h -------------------------------------------------------------------------------- /CTHackFramework/Process/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Process/Process.cpp -------------------------------------------------------------------------------- /CTHackFramework/Process/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Process/Process.h -------------------------------------------------------------------------------- /CTHackFramework/Util/ConsoleColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Util/ConsoleColor.h -------------------------------------------------------------------------------- /CTHackFramework/Util/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Util/Logger.cpp -------------------------------------------------------------------------------- /CTHackFramework/Util/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Util/Logger.h -------------------------------------------------------------------------------- /CTHackFramework/Util/StringManipulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/CTHackFramework/Util/StringManipulation.h -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/README.md -------------------------------------------------------------------------------- /res/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/res/arch.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialPaler/CTHackFramework/HEAD/res/logo.png --------------------------------------------------------------------------------