mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-26 04:48:13 +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;
|
|
}; |