Add basic movement

This commit is contained in:
2023-11-12 19:04:25 +01:00
parent 526d292fb5
commit bf543330e5
10 changed files with 52 additions and 5 deletions

View File

@@ -12,6 +12,8 @@ typedef struct Game {
BzTileMap map;
int selectedBuilding;
ecs_entity_t *entityMap;
f32 frameDuration;
Vector2 targetPos;
} Game;
extern Game *GAME;