2 #ifndef GUICONTROLLER_HPP
3 #define GUICONTROLLER_HPP
9 std::string_view
name()
const override {
10 return "test::app::GUIController";
Includes all the engine headers.
Controllers are a hook into the App main loop execution. By overriding virtual functions of this clas...
Definition: Controller.hpp:41
Definition: GUIController.hpp:7
void draw() override
Draw the world state. Executes in the core::App::draw.
Definition: GUIController.cpp:18
void poll_events() override
Process internal and external events. Executes in the core::App::poll_events.
Definition: GUIController.cpp:11
std::string_view name() const override
Definition: GUIController.hpp:9
void initialize() override
Initializes the controller. Executes in the core::App::initialize.
Definition: GUIController.cpp:7
Definition: GUIController.hpp:6