Files
FNGameProj/Source/FortniteGame/Private/AthenaLevelInfo.cpp
2024-01-21 00:41:14 +01:00

15 lines
314 B
C++

#include "AthenaLevelInfo.h"
FAthenaLevelInfo::FAthenaLevelInfo() {
this->AccountLevel = 0;
this->Level = 0;
this->MaxLevel = 0;
this->LevelXp = 0;
this->LevelXpForLevel = 0;
this->BookLevel = 0;
this->BookMaxLevel = 0;
this->BookLevelXp = 0;
this->BookLevelXpForLevel = 0;
}