summaryrefslogtreecommitdiff
path: root/game/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/world.h')
-rw-r--r--game/world.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/game/world.h b/game/world.h
new file mode 100644
index 0000000..a0185e7
--- /dev/null
+++ b/game/world.h
@@ -0,0 +1,11 @@
+#ifndef WORLD_H
+#define WORLD_H
+
+#include "worldobject.h"
+#include <collection.hpp>
+
+class World : public Collection<WorldObject> {
+public:
+};
+
+#endif