Option to enable/disable debug drawing

This commit is contained in:
2023-11-18 11:19:54 +01:00
parent 03b5959eae
commit 4d9851f433
3 changed files with 34 additions and 5 deletions

View File

@@ -40,6 +40,12 @@ typedef struct Game {
struct {
BzObjectPool *pathData;
} pools;
struct {
bool path;
bool entityColliders;
bool mapColliders;
bool spatialGrid;
} debugDraw;
f32 elapsed;
} Game;