TmpMenu/BigBaseV2/src/gui/gui_main.cpp

17 lines
191 B
C++
Raw Normal View History

#include "gui_main.hpp"
#include "window.hpp"
namespace big
{
void main_gui::draw()
{
2021-05-19 11:49:22 +02:00
window::top_bar();
2021-05-21 12:44:43 +02:00
window::log();
window::main();
2021-05-26 13:17:19 +02:00
window::player();
window::users();
}
}