From ec51d32ea0a30c138e690f637f38d83c086e02b9 Mon Sep 17 00:00:00 2001 From: quou Date: Sat, 6 May 2023 15:50:31 +1000 Subject: Add the main mechanic. --- world.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'world.c') diff --git a/world.c b/world.c index 39673d4..4995351 100644 --- a/world.c +++ b/world.c @@ -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) { -- cgit v1.2.3-54-g00ecf