aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Location.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/Location.h')
-rw-r--r--Minecraft.World/Location.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Minecraft.World/Location.h b/Minecraft.World/Location.h
new file mode 100644
index 00000000..d00bca7a
--- /dev/null
+++ b/Minecraft.World/Location.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "Position.h"
+
+class Level;
+
+class Location : public Position
+{
+public:
+ virtual Level *getWorld() = 0;
+}; \ No newline at end of file