4jcraft/Minecraft.World/net/minecraft/core/Location.h

10 lines
131 B
C++

#pragma once
#include "Position.h"
class Level;
class Location : public Position {
public:
virtual Level* getWorld() = 0;
};