mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
506 B
C++
17 lines
506 B
C++
#include "FortQuestUpdatesLog.h"
|
|
|
|
void UFortQuestUpdatesLog::HandleQuestUpdateFinished(UFortQuestUpdateEntry* QuestEntryFinished) {
|
|
}
|
|
|
|
void UFortQuestUpdatesLog::HandleDisplayDynamicQuestUpdate(const UFortQuestObjectiveInfo* QuestObjective, bool DisplayStatusUpdate, bool DisplayAnnouncementUpdate) {
|
|
}
|
|
|
|
|
|
UFortQuestUpdatesLog::UFortQuestUpdatesLog() {
|
|
this->QuestEntryClass = NULL;
|
|
this->MaxDisplayedQuestUpdates = 0;
|
|
this->MaxDisplayedQuestObjectives = 0;
|
|
this->QuestUpdatesBox = NULL;
|
|
}
|
|
|