From f8b92ce3aa08b1445c9f956d8166830946562d12 Mon Sep 17 00:00:00 2001 From: navewindre Date: Wed, 3 Sep 2025 20:10:09 +0200 Subject: a --- src/game/world/world.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/game/world/world.h (limited to 'src/game/world/world.h') diff --git a/src/game/world/world.h b/src/game/world/world.h new file mode 100644 index 0000000..229f235 --- /dev/null +++ b/src/game/world/world.h @@ -0,0 +1,11 @@ +#pragma once +#include "../object.h" + +struct WORLD : OBJECT { + static const U32 CLASSID = OBJCLASS_WORLD; + + struct WORLD_MAP* map; +}; + +extern WORLD* world_create( WORLD_MAP* map ); +extern STAT world_populate_entities( WORLD* world ); -- cgit v1.2.3