mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-10 11:09:45 +08:00
21 lines
245 B
C++
21 lines
245 B
C++
|
#pragma once
|
||
|
#include "common.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
class gui
|
||
|
{
|
||
|
public:
|
||
|
void dx_init();
|
||
|
void dx_on_tick();
|
||
|
|
||
|
void script_init();
|
||
|
void script_on_tick();
|
||
|
static void script_func();
|
||
|
public:
|
||
|
bool m_opened{};
|
||
|
};
|
||
|
|
||
|
inline gui g_gui;
|
||
|
}
|