feat(GUI): Added debug window

This commit is contained in:
Yimura
2021-12-22 21:41:00 +01:00
parent 0f56f836bb
commit 96f04d762b
8 changed files with 136 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#pragma once
#include "common.hpp"
#include "imgui.h"
namespace big
{
class tab_debug {
public:
static void tab_globals();
static void tab_script_events();
static void _tab_debug();
};
}