Engine Interface

This commit is contained in:
Isuru Samarathunga
2025-10-04 02:21:36 +05:30
parent ff73221cae
commit 5408f07e97
8 changed files with 230 additions and 23 deletions

View File

@ -18,7 +18,16 @@
#include <IAEngine/Base.hpp>
#include <SDL3/SDL_events.h>
namespace ia::iae
{
class __Internal_Engine
{
public:
STATIC VOID Initialize();
STATIC VOID Terminate();
STATIC VOID Iterate();
STATIC VOID ProcessEvent(IN SDL_Event* event);
};
}

View File

View File