12 lines
313 B
C++
Executable file
12 lines
313 B
C++
Executable file
#include "CharacterSave.h"
|
|
|
|
FCharacterSave::FCharacterSave() {
|
|
this->XP = 0;
|
|
this->HasCompletedRetirementCampaign = false;
|
|
this->TimesRetired = 0;
|
|
this->RetiredCharacterLevels = 0;
|
|
this->HasSeenRetirementRewardScreen = false;
|
|
this->CharacterClass = NULL;
|
|
this->SelectedLoadout = 0;
|
|
}
|
|
|