v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
25
source/game/interfaces/StarInteractiveEntity.cpp
Normal file
25
source/game/interfaces/StarInteractiveEntity.cpp
Normal file
|
@ -0,0 +1,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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue