4jcraft/targets/minecraft/core/Location.h
2026-04-01 13:27:58 -05:00

10 lines
131 B
C++

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