the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 11 lines 128 B view raw
1#pragma once 2 3#include "Position.h" 4 5class Level; 6 7class Location : public Position 8{ 9public: 10 virtual Level *getWorld() = 0; 11};