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

15 lines
365 B
C++

#include "FortExperienceDelta.h"
FFortExperienceDelta::FFortExperienceDelta() {
this->Level = 0;
this->Xp = 0;
this->BaseXPEarned = 0;
this->BonusXPEarned = 0;
this->BoostXPEarned = 0;
this->BoostXPMissed = 0;
this->RestXPEarned = 0;
this->GroupBoostXPEarned = 0;
this->IsFinalXpUpdate = EFortIsFinalXpUpdate::Uninitialized;
}