config setup

This commit is contained in:
herbglitch 2022-12-13 15:50:24 -07:00
parent a70e2256e2
commit cd5471c9c8
8 changed files with 124 additions and 27 deletions

View file

@ -10,6 +10,7 @@ extern "C" {
#include "arc/input/mouse.h"
#include "arc/input/keyboard.h"
#include "arc/std/handler.h"
#include "arc/math/point.h"
typedef struct ARC_EngineData {
ARC_Window *window;
@ -20,6 +21,7 @@ typedef struct ARC_EngineData {
double dt;
uint32_t running;
ARC_Point windowSize;
ARC_Handler_CleanDataFn cleanfn;
} ARC_EngineData;