mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
592 B
C++
23 lines
592 B
C++
#include "FortAthenaLoadout.h"
|
|
|
|
FFortAthenaLoadout::FFortAthenaLoadout() {
|
|
this->SkyDiveContrail = NULL;
|
|
this->Glider = NULL;
|
|
this->Pickaxe = NULL;
|
|
this->bIsDefaultCharacter = false;
|
|
this->Character = NULL;
|
|
this->bForceUpdateVariants = false;
|
|
this->Hat = NULL;
|
|
this->Backpack = NULL;
|
|
this->LoadingScreen = NULL;
|
|
this->BattleBus = NULL;
|
|
this->VehicleDecoration = NULL;
|
|
this->CallingCard = NULL;
|
|
this->MapMarker = NULL;
|
|
this->VictoryPose = NULL;
|
|
this->MusicPack = NULL;
|
|
this->ItemWrapOverride = NULL;
|
|
this->PetSkin = NULL;
|
|
}
|
|
|