diff options
author | BoredGuy <osome3717@gmail.com> | 2025-08-26 19:54:09 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-08-26 19:54:09 +0300 |
commit | f95068d73410aa6d01e8ba91b430ca05d404a57b (patch) | |
tree | 84de322f972182510e48aaa374ae8a62ac3ee2b5 /include/utils.h | |
parent | 87d07175058ee4ae18fce608de81c68d7d9bb178 (diff) |
Added barrel, next up sprite Z-sorting(ugh)
Diffstat (limited to 'include/utils.h')
-rw-r--r-- | include/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/utils.h b/include/utils.h index 3381828..5a4a4ac 100644 --- a/include/utils.h +++ b/include/utils.h @@ -4,6 +4,8 @@ #include <stdbool.h> #include "game.h" +#define UNUSED(x) (void)x + static inline bool EntityAllocated(const Entity* e) { return (e->flags & ENTITY_ALLOCATED); } |