4jcraft/Minecraft.World/Core/Location.h
2026-03-21 15:54:53 -05:00

10 lines
131 B
C++

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