This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YimMenu/BigBaseV2/src/gui/window.hpp
2022-02-21 18:22:46 +01:00

29 lines
413 B
C++

#pragma once
#include "natives.hpp"
namespace big
{
class window {
static void debug();
static void top_bar();
static void handling();
static void log();
static void main();
static void w_player();
static void users();
public:
static void draw_all()
{
window::top_bar();
window::debug();
window::main();
window::handling();
window::w_player();
window::users();
}
};
}