matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
TestApp.hpp
Go to the documentation of this file.
1 
2 #ifndef MAINAPP_HPP
3 #define MAINAPP_HPP
4 #include <engine/core/Engine.hpp>
5 
6 namespace engine::test::app {
7  class TestApp final : public engine::core::App {
8  void app_setup() override;
9  };
10 }
11 #endif //MAINAPP_HPP
Includes all the engine headers.
Defines the base App class that serves as the application core structure and the entry point.
Definition: App.hpp:45
Definition: TestApp.hpp:7
void app_setup() override
Override to define your custom app setup that gets called after the engine_setup.
Definition: TestApp.cpp:6
Definition: GUIController.hpp:6