CodeGPT Decompiler & Cheat Developer

This commit is contained in:
Elias Bachaalany
2024-01-26 10:41:24 -08:00
parent 38f5280338
commit ff7a4582de
16 changed files with 1399 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include "InputHandler.hpp"
#include "Process.hpp"
int main(int argc, char* argv[])
{
using namespace DLL_Injector;
InjectionData iData;
// Handle console input.
if (HandleInput(argc, argv, iData) == -1)
return -1;
// Inject DLL.
return InjectDLL(iData);
}