11 lines
237 B
C++
Executable file
11 lines
237 B
C++
Executable file
#include "CharacterProgress.h"
|
|
|
|
FCharacterProgress::FCharacterProgress() {
|
|
this->characterID = NULL;
|
|
this->Level = 0;
|
|
this->Progress = 0.00f;
|
|
this->CurrentXP = 0;
|
|
this->NextLevelXP = 0;
|
|
this->TimesRetired = 0;
|
|
}
|
|
|