mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
422 B
C++
16 lines
422 B
C++
#include "FortPlayerAttributeSets.h"
|
|
|
|
FFortPlayerAttributeSets::FFortPlayerAttributeSets() {
|
|
this->HealthSet = NULL;
|
|
this->ControlResistanceSet = NULL;
|
|
this->DamageSet = NULL;
|
|
this->MovementSet = NULL;
|
|
this->AdvancedMovementSet = NULL;
|
|
this->ConstructionSet = NULL;
|
|
this->PlayerAttrSet = NULL;
|
|
this->CharacterAttrSet = NULL;
|
|
this->WeaponAttrSet = NULL;
|
|
this->HomebaseSet = NULL;
|
|
}
|
|
|