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
TestApp.hpp
Go to the documentation of this file.
1
2#ifndef MAINAPP_HPP
3#define MAINAPP_HPP
5
6namespace 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 engine engine_setup.
Definition TestApp.cpp:6
Definition GUIController.hpp:6