2020-12-02 16:19:16 -05:00
|
|
|
#include "pch.h"
|
|
|
|
|
|
|
|
std::string Globals::header_id = "";
|
|
|
|
int Globals::last_key_timer = 0;
|
|
|
|
ImVec2 Globals::menu_size = ImVec2(screen::GetScreenWidth()/4, screen::GetScreenHeight()/1.2);
|
2020-12-21 15:24:07 -05:00
|
|
|
std::string Globals::menu_title = std::string("Cheat Menu v") + std::string(MENU_VERSION) + " (" BUILD_NUMBER + ")";
|
2020-12-02 16:19:16 -05:00
|
|
|
ImVec2 Globals::font_screen_size = ImVec2(-1, -1);
|
|
|
|
bool Globals::show_menu = false;
|
|
|
|
bool Globals::init_done = false;
|
|
|
|
Renderer Globals::renderer = Render_Unknown;
|
|
|
|
ID3D11Device *Globals::device11 = nullptr;
|
2020-12-20 14:23:32 -05:00
|
|
|
std::string Globals::menu_path = paths::GetPluginDirPathA();
|
2020-12-02 16:19:16 -05:00
|
|
|
|
|
|
|
std::ofstream flog = std::ofstream("CheatMenu.log");
|
2020-12-21 15:24:07 -05:00
|
|
|
CJson config = CJson("config");
|