
Co-authored-by: Maddy <59680197+xM4ddy@users.noreply.github.com> Co-authored-by: Yimura <andreas.maerten@scarlet.be>
13 lines
153 B
C++
13 lines
153 B
C++
#include "views/view.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void view::root()
|
|
{
|
|
view::heading();
|
|
view::navigation();
|
|
view::players();
|
|
view::active_view();
|
|
}
|
|
}
|