18 lines
322 B
C++
18 lines
322 B
C++
#pragma once
|
|
|
|
#include "StarWarping.hpp"
|
|
#include "StarTileEntity.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(WarpTargetEntity);
|
|
|
|
class WarpTargetEntity : public virtual TileEntity {
|
|
public:
|
|
// Foot position for things teleporting onto this entity, relative to root
|
|
// position.
|
|
virtual Vec2F footPosition() const = 0;
|
|
};
|
|
|
|
}
|