refactor(GUI): Simplified calls to windows

This commit is contained in:
Yimura
2022-01-04 22:45:34 +01:00
parent 7f86a31c49
commit 1484c90226
4 changed files with 19 additions and 35 deletions

View File

@ -1,9 +1,9 @@
#pragma once
#include "natives.hpp"
namespace big
{
class window {
public:
static void debug();
static void top_bar();
static void handling();
@ -11,5 +11,21 @@ namespace big
static void main();
static void player();
static void users();
public:
static void draw_all()
{
window::top_bar();
window::log();
window::debug();
window::main();
window::handling();
window::player();
window::users();
}
};
}