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);
|
2021-01-11 13:07:10 -05:00
|
|
|
ImVec2 Globals::screen_size = ImVec2(-1, -1);
|
2020-12-02 16:19:16 -05:00
|
|
|
bool Globals::show_menu = false;
|
|
|
|
bool Globals::init_done = false;
|
|
|
|
Renderer Globals::renderer = Render_Unknown;
|
2020-12-28 15:12:40 -05:00
|
|
|
bool Globals::gsync_time = false;
|
2021-01-07 16:07:45 -05:00
|
|
|
void *Globals::device = nullptr;
|
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");
|