Behaviour tree decorator implementation

This commit is contained in:
2024-01-09 17:10:00 +01:00
parent 5486c3189f
commit d7feba04db
8 changed files with 517 additions and 1 deletions

View File

@@ -17,6 +17,8 @@ typedef struct BzObjectPoolDesc {
BzObjectPool *bzObjectPoolCreate(const BzObjectPoolDesc *desc);
void bzObjectPoolDestroy(BzObjectPool *pool);
size_t bzObjectPoolGetObjectSize(BzObjectPool *pool);
size_t bzObjectPoolGetNumFree(BzObjectPool *pool);
void *bzObjectPool(BzObjectPool *pool);
void *bzObjectPoolGetObject(BzObjectPool *pool, u32 idx);