mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
365 B
C++
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;
|
|
}
|
|
|