Path following

This commit is contained in:
2023-11-14 12:01:28 +01:00
parent ab817ee03d
commit 8825b9e01f
14 changed files with 213 additions and 102 deletions

View File

@@ -14,6 +14,9 @@ typedef struct Game {
ecs_entity_t *entityMap;
f32 frameDuration;
Vector2 targetPos;
ecs_entity_t entity;
Path path;
Position waypoints[128];
} Game;
extern Game *GAME;