2021-05-19 11:28:13 +02:00
|
|
|
#pragma once
|
2022-01-04 22:45:34 +01:00
|
|
|
#include "natives.hpp"
|
2021-05-19 11:28:13 +02:00
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
class window {
|
2021-12-22 21:41:00 +01:00
|
|
|
static void debug();
|
2021-05-19 11:49:22 +02:00
|
|
|
static void top_bar();
|
2021-07-25 22:24:48 +02:00
|
|
|
static void handling();
|
2021-05-21 12:44:43 +02:00
|
|
|
static void log();
|
2021-05-19 11:28:13 +02:00
|
|
|
static void main();
|
2021-05-26 13:17:19 +02:00
|
|
|
static void player();
|
|
|
|
static void users();
|
2022-01-04 22:45:34 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void draw_all()
|
|
|
|
{
|
|
|
|
window::top_bar();
|
|
|
|
|
|
|
|
window::log();
|
|
|
|
|
|
|
|
window::debug();
|
|
|
|
|
|
|
|
window::main();
|
|
|
|
window::handling();
|
|
|
|
|
|
|
|
window::player();
|
|
|
|
window::users();
|
|
|
|
}
|
2021-05-19 11:28:13 +02:00
|
|
|
};
|
|
|
|
}
|