Allocate path with object pool for pathfinding

This commit is contained in:
2023-11-16 07:23:56 +01:00
parent 9e6c836207
commit af99504370
9 changed files with 110 additions and 64 deletions

View File

@@ -21,9 +21,10 @@ typedef double f64;
#define BZ_ASSERT(e) assert(e)
#define DEBUG_MODE
#ifndef DEBUG_MODE
#undef BZ_ASSERT
#define BZ_ASSERT(e) (void)(e)
#define BZ_ASSERT(e) BZ_UNUSDE(x)
#endif
#define BZ_UNUSED(x) (void)(x)