Files
FNGameProj/Source/FortniteUI/Private/FortQuestPlayButton.cpp
2024-01-21 00:41:14 +01:00

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;
}