diff options
author | quou <quou@disroot.org> | 2023-05-06 15:50:31 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-06 15:50:31 +1000 |
commit | ec51d32ea0a30c138e690f637f38d83c086e02b9 (patch) | |
tree | 95570a567cc34ef5255a845391178d8649cd56a4 /world.c | |
parent | 9e28af25b8fb5c9474ccbec2bd4dff26f1871075 (diff) |
Add the main mechanic.
Diffstat (limited to 'world.c')
-rw-r--r-- | world.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,12 +29,15 @@ Entity new_entity(World* world) { world->bitmask[e] = 0; + world->gmemory--; + return e; } void destroy_entity(World* world, Entity e) { world->recycle_bin[world->recycle_bin_count++] = e; world->bitmask[e] = 0; + world->gmemory++; } void add_components(World* world, Entity e, CType bits) { |