GPR5100 - Rollback
Loading...
Searching...
No Matches
app.h
1#pragma once
2
3#include "engine/system.h"
4#include "graphics/graphics.h"
5
6namespace core
7{
12{
13
14};
15}
App is an interface for applications that need to init/update/destroy, draw and get event from OS.
Definition: app.h:12
DrawImGuiInterface is an interface used by the Engine to be called when the game loop is drawing ImGu...
Definition: graphics.h:23
DrawInterface is an interface used by the Engine to be called when the game loop is drawing elements ...
Definition: graphics.h:12
OnEventInterface is an interface to a class that needs to read events from the Engine....
Definition: system.h:26
SystemInterface is an interface to a game system that needs to begin, update and end by the Engine....
Definition: system.h:13