mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:33:37 +00:00
10 lines
131 B
C++
10 lines
131 B
C++
#pragma once
|
|
|
|
#include "Position.h"
|
|
|
|
class Level;
|
|
|
|
class Location : public Position {
|
|
public:
|
|
virtual Level* getWorld() = 0;
|
|
}; |