mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-27 02:58:43 +05: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;
|
|
}; |