Update core.h

This commit is contained in:
EricPlayZ
2024-04-24 04:02:30 +03:00
parent c43a9ccf02
commit 565d37b409

View File

@ -16,9 +16,9 @@
#define VK_MWHEELUP 0x101
#endif
constexpr auto MOD_VERSION_STR = "v1.1.2";
constexpr auto MOD_VERSION = 10102;
constexpr uint16_t GAME_VER_COMPAT = 11530;
constexpr const char* MOD_VERSION_STR = "v1.1.3";
constexpr DWORD MOD_VERSION = 10103;
constexpr DWORD GAME_VER_COMPAT = 11600;
struct Key {
constexpr Key(std::string_view name, int code, ImGuiKey imGuiCode) : name(name), code(code), imGuiCode(imGuiCode) {}
@ -227,6 +227,6 @@ namespace Core {
extern bool exiting;
extern int rendererAPI;
extern uint16_t gameVer;
extern DWORD gameVer;
extern void OnPostUpdate();
}
}