mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-19 11:01:54 +00:00
11 lines
128 B
C++
11 lines
128 B
C++
#pragma once
|
|
|
|
#include "Position.h"
|
|
|
|
class Level;
|
|
|
|
class Location : public Position
|
|
{
|
|
public:
|
|
virtual Level *getWorld() = 0;
|
|
}; |