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.
2020-12-26 20:15:32 +01:00

26 lines
361 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();
void render_top_bar();
void render_main_window();
void render_user_sidebar();
void render_player_window();
public:
bool m_opened{};
};
inline gui g_gui;
}