TmpMenu/src/gui.hpp

21 lines
245 B
C++
Raw Normal View History

2019-03-21 20:18:31 +01:00
#pragma once
#include "common.hpp"
namespace big
{
class gui
{
public:
void dx_init();
void dx_on_tick();
void always_draw();
2019-03-21 20:18:31 +01:00
void script_on_tick();
static void script_func();
public:
bool m_opened{};
};
inline gui g_gui;
}