matf-rg-engine 1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
Loading...
Searching...
No Matches
GUIController.hpp
Go to the documentation of this file.
1
2#ifndef GUICONTROLLER_HPP
3#define GUICONTROLLER_HPP
5
8 void initialize() override;
9
10 void poll_events() override;
11
12 void draw() override;
13 };
14}
15#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:42
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
void initialize() override
Initializes the controller. Executes in the core::App::initialize.
Definition GUIController.cpp:7
Definition GUIController.hpp:6