mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
31 lines
428 B
C++
31 lines
428 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 player();
|
|
static void users();
|
|
|
|
public:
|
|
static void draw_all()
|
|
{
|
|
window::top_bar();
|
|
|
|
window::log();
|
|
|
|
window::debug();
|
|
|
|
window::main();
|
|
window::handling();
|
|
|
|
window::player();
|
|
window::users();
|
|
}
|
|
};
|
|
} |