diff options
Diffstat (limited to 'NorthstarDLL/pch.h')
-rw-r--r-- | NorthstarDLL/pch.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/NorthstarDLL/pch.h b/NorthstarDLL/pch.h index 824aaee8..a6a3f06d 100644 --- a/NorthstarDLL/pch.h +++ b/NorthstarDLL/pch.h @@ -9,7 +9,7 @@ #define RAPIDJSON_HAS_STDSTRING 1 // add headers that you want to pre-compile here -#include "memalloc.h" +#include "core/memalloc.h" #include <windows.h> #include <psapi.h> @@ -20,13 +20,17 @@ namespace fs = std::filesystem; -#include "structs.h" -#include "color.h" +// clang-format off +#define assert_msg(exp, msg) assert((exp, msg)) +//clang-format on + +#include "core/structs.h" +#include "core/math/color.h" #include "spdlog/spdlog.h" -#include "logging.h" +#include "logging/logging.h" #include "MinHook.h" #include "libcurl/include/curl/curl.h" -#include "hooks.h" +#include "core/hooks.h" #include "memory.h" template <typename ReturnType, typename... Args> ReturnType CallVFunc(int index, void* thisPtr, Args... args) |