JacksEscape/App.h

14 lines
220 B
C
Raw Normal View History

2024-03-01 17:09:24 +08:00
#pragma once
#include "Entity.h"
#include "Physics_Component.h"
#include "Player_Component.h"
#include "Input.h"
typedef struct _App {
System_Physics *physics;
System_Player *player;
System_Input *input;
} App;