summaryrefslogtreecommitdiff
path: root/src/game/world/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/world/world.h')
-rw-r--r--src/game/world/world.h11
1 files changed, 11 insertions, 0 deletions
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 );