osb/source/game/interfaces/StarInteractiveEntity.cpp
2023-06-20 14:33:09 +10:00

26 lines
441 B
C++

#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();
}
}