mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
321 B
C++
14 lines
321 B
C++
#include "FortRequirementsInfo.h"
|
|
|
|
FFortRequirementsInfo::FFortRequirementsInfo() {
|
|
CommanderLevel = 0;
|
|
PersonalPowerRating = 0;
|
|
MaxPersonalPowerRating = 0;
|
|
PartyPowerRating = 0;
|
|
MaxPartyPowerRating = 0;
|
|
QuestDefinition = NULL;
|
|
UncompletedQuestDefinition = NULL;
|
|
ItemDefinition = NULL;
|
|
}
|
|
|