diff --git a/src/Game/MP/Game.cpp b/src/Game/MP/Game.cpp new file mode 100644 index 0000000..1196d52 --- /dev/null +++ b/src/Game/MP/Game.cpp @@ -0,0 +1 @@ +#include "STDInclude.hpp" diff --git a/src/Game/MP/Functions.hpp b/src/Game/MP/Game.hpp similarity index 100% rename from src/Game/MP/Functions.hpp rename to src/Game/MP/Game.hpp diff --git a/src/Game/SP.cpp b/src/Game/SP.cpp deleted file mode 100644 index fe5bfc1..0000000 --- a/src/Game/SP.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include "STDInclude.hpp" - -namespace SP -{ - void PatchT4() - { - MessageBoxA(nullptr, "SP", "DEBUG", 0); - } -} diff --git a/src/Game/SP.hpp b/src/Game/SP.hpp deleted file mode 100644 index 2befd43..0000000 --- a/src/Game/SP.hpp +++ /dev/null @@ -1,6 +0,0 @@ -#pragma once - -namespace SP -{ - void PatchT4(); -} diff --git a/src/Game/SP/Functions.hpp b/src/Game/SP/Functions.hpp deleted file mode 100644 index e69de29..0000000 diff --git a/src/Game/SP/Structs.hpp b/src/Game/SP/Structs.hpp deleted file mode 100644 index e69de29..0000000 diff --git a/src/Main.cpp b/src/Main.cpp index 08ebb3d..e886cea 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -32,8 +32,6 @@ namespace Main DWORD dataStrData = Utils::Hook::Get(0x59B69C); if (dataStrData == 0x6C6C6143) MP::PatchT4(); - else - SP::PatchT4(); hModule = GetModuleHandle(NULL); PIMAGE_DOS_HEADER header = (PIMAGE_DOS_HEADER)hModule; diff --git a/src/STDInclude.hpp b/src/STDInclude.hpp index c1e271b..b72257f 100644 --- a/src/STDInclude.hpp +++ b/src/STDInclude.hpp @@ -84,7 +84,6 @@ template class Sizer { }; #include "Utils/Hooking.hpp" #include "Game/MP.hpp" -#include "Game/SP.hpp" // Libraries #pragma comment(lib, "Winmm.lib")