mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
566 B
C++
17 lines
566 B
C++
#include "AthenaSeasonItemDefinition.h"
|
|
|
|
UAthenaSeasonItemDefinition::UAthenaSeasonItemDefinition() {
|
|
this->SeasonNumber = -1;
|
|
this->NumSeasonLevels = 10;
|
|
this->NumBookLevels = 10;
|
|
this->SeasonShopVisibility = EAthenaSeasonShopVisibility::Hide;
|
|
this->ChallengesVisibility = EAthenaChallengeTabVisibility::Hide;
|
|
this->SeasonXpCurve = NULL;
|
|
this->BookXpCurve = NULL;
|
|
this->SeasonalGlyphChallengeBundle = NULL;
|
|
this->SeasonalGlyphRewards = NULL;
|
|
this->ChallengeSchedulePaid = NULL;
|
|
ItemType = EFortItemType::AthenaSeason;
|
|
}
|
|
|