blob: 4f5b71b524cf125c9946a39d1f0764fd070c5f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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;
};
}
|