mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
369 B
C++
14 lines
369 B
C++
#include "FortRequirementsInfo.h"
|
|
|
|
FFortRequirementsInfo::FFortRequirementsInfo() {
|
|
this->CommanderLevel = 0;
|
|
this->PersonalPowerRating = 0;
|
|
this->MaxPersonalPowerRating = 0;
|
|
this->PartyPowerRating = 0;
|
|
this->MaxPartyPowerRating = 0;
|
|
this->QuestDefinition = NULL;
|
|
this->UncompletedQuestDefinition = NULL;
|
|
this->ItemDefinition = NULL;
|
|
}
|
|
|