mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-24 16:33:51 +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;
|
||
|
|
};
|