mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
463 B
C++
19 lines
463 B
C++
#include "GameDifficultyInfo.h"
|
|
|
|
FGameDifficultyInfo::FGameDifficultyInfo() {
|
|
bIsOnboarding = false;
|
|
Difficulty = 1;
|
|
DifficultyMatchmakingMinOverride = 1;
|
|
DifficultyMatchmakingMaxOverride = 1;
|
|
LootLevel = 0;
|
|
RatingsEnforcement = ERatingsEnforcementType::Default;
|
|
RequiredRating = 0;
|
|
MaximumRating = 0;
|
|
PvPRating = 0;
|
|
RecommendedRating = 0;
|
|
ScoreBonus = 1;
|
|
NumDifficultyIncreases = 0;
|
|
DefaultPlayerLives = 0;
|
|
}
|
|
|