matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
GUIController.hpp
Go to the documentation of this file.
1 
2 #ifndef GUICONTROLLER_HPP
3 #define GUICONTROLLER_HPP
4 #include <engine/core/Engine.hpp>
5 
6 namespace engine::test::app {
7  class GUIController final : public engine::core::Controller {
8  public:
9  std::string_view name() const override {
10  return "test::app::GUIController";
11  }
12 
13  private:
14  void initialize() override;
15 
16  void poll_events() override;
17 
18  void draw() override;
19  };
20 }
21 #endif //GUICONTROLLER_HPP
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