1#pragma once 2 3#include "Position.h" 4 5class Level; 6 7class Location : public Position 8{ 9public: 10 virtual Level *getWorld() = 0; 11};