mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
327 B
C++
23 lines
327 B
C++
#include "FortQuestPlayButton.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool UFortQuestPlayButton::CanPlayQuest() const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortQuestPlayButton::CanNavigateToQuestObjective() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortQuestPlayButton::AttemptToPlayQuest() {
|
|
}
|
|
|
|
UFortQuestPlayButton::UFortQuestPlayButton() {
|
|
this->QuestItem = NULL;
|
|
}
|
|
|