mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
467 B
C++
16 lines
467 B
C++
#include "FortMissionDetails.h"
|
|
|
|
FFortMissionDetails::FFortMissionDetails() {
|
|
this->TileType = EFortTheaterMapTileType::Normal;
|
|
this->bIsGroupContent = false;
|
|
this->MissionDefinition = NULL;
|
|
this->RequiredBaseRating = 0;
|
|
this->RecommendedBaseRating = 0;
|
|
this->ContentDifficultyLevel = 0;
|
|
this->ContentAccountLevel = 0;
|
|
this->LootLevel = 0;
|
|
this->bOverrideConningText = false;
|
|
this->AssociatedCloudSaveItemDefinition = NULL;
|
|
}
|
|
|