blob: 5ad93ff52e265ba16a9977d10b23fed357e037b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "StarInteractiveEntity.hpp"
namespace Star {
RectF InteractiveEntity::interactiveBoundBox() const {
return metaBoundBox();
}
bool InteractiveEntity::isInteractive() const {
return true;
}
List<QuestArcDescriptor> InteractiveEntity::offeredQuests() const {
return {};
}
StringSet InteractiveEntity::turnInQuests() const {
return {};
}
Vec2F InteractiveEntity::questIndicatorPosition() const {
return position();
}
}
|