TmpMenu/BigBaseV2/src/gui/window.hpp

14 lines
236 B
C++
Raw Normal View History

#pragma once
#include "imgui.h"
namespace big
{
class window
{
public:
static void render_top_bar();
static void render_main_window();
static void render_user_sidebar();
static void render_player_window();
};
}