CheatMenuSA/src/pch.cpp
Grinch_ 2a6fdb1c72 Bug fixes & new stuff
1. Fixed issue with radio scroll #45
2. Fixed crash with renderhook
3. Refactored code
4. Added option to control neon pulsing
5. Fixed a issue with huge crosshair when huge dmg is enabled
2021-01-08 03:07:45 +06:00

15 lines
498 B
C++

#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);
ImVec2 Globals::font_screen_size = ImVec2(-1, -1);
bool Globals::show_menu = false;
bool Globals::init_done = false;
Renderer Globals::renderer = Render_Unknown;
bool Globals::gsync_time = false;
void *Globals::device = nullptr;
std::ofstream flog = std::ofstream("CheatMenu.log");
CJson config = CJson("config");