Separate engine and game

This commit is contained in:
2023-11-07 16:55:14 +01:00
parent 8a13edb838
commit 20034c96e6
922 changed files with 526 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
#ifndef BREEZE_VEC2_H
#define BREEZE_VEC2_H
#include "breeze/defines.h"
typedef struct Vec2i {
int32_t x;
int32_t y;
} Vec2i;
#endif //BREEZE_VEC2_H