]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Player.hpp
split chunk stuff
[blank.git] / src / world / Player.hpp
diff --git a/src/world/Player.hpp b/src/world/Player.hpp
new file mode 100644 (file)
index 0000000..68aa352
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef BLANK_WORLD_PLAYER_HPP_
+#define BLANK_WORLD_PLAYER_HPP_
+
+namespace blank {
+
+class ChunkIndex;
+class Entity;
+
+struct Player {
+
+       Entity *entity;
+       ChunkIndex *chunks;
+
+       Player(Entity *e, ChunkIndex *i)
+       : entity(e), chunks(i) { }
+
+};
+
+}
+
+#endif