mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
429 B
C++
16 lines
429 B
C++
#include "FortHeroLoadoutPerkTileBase.h"
|
|
|
|
|
|
UFortHeroLoadoutPerkTileBase::UFortHeroLoadoutPerkTileBase() {
|
|
this->BrushSize = EFortBrushSize::Large;
|
|
this->bShowSummaryDescription = false;
|
|
this->Text_PerkName = NULL;
|
|
this->Text_Description = NULL;
|
|
this->Image_PerkIcon = NULL;
|
|
this->Hbox_PerkDetails = NULL;
|
|
this->InactiveOpacity = 0.50f;
|
|
this->ActiveOpacity = 1.00f;
|
|
this->AbilityKit = NULL;
|
|
}
|
|
|