blob: 9547e64f06b85cee2af88687c41ad8b9bb79a971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "StarWarpTargetEntity.hpp"
#include "StarObject.hpp"
namespace Star {
class TeleporterObject : public Object, public WarpTargetEntity {
public:
TeleporterObject(ObjectConfigConstPtr config, Json const& parameters = JsonObject());
Vec2F footPosition() const override;
};
}
|