mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
528 B
C++
23 lines
528 B
C++
#include "FortTierIndicator.h"
|
|
|
|
void UFortTierIndicator::SetPreviewState(int32 TierIncrease) {
|
|
}
|
|
|
|
void UFortTierIndicator::SetItemToRepresent(UFortItem* NewItemToRepresent) {
|
|
}
|
|
|
|
void UFortTierIndicator::SetInterPipPadding(float NewInterPipPadding) {
|
|
}
|
|
|
|
void UFortTierIndicator::SetBrushSize(TEnumAsByte<EFortBrushSize::Type> NewBrushSize) {
|
|
}
|
|
|
|
void UFortTierIndicator::ClearPreviewState() {
|
|
}
|
|
|
|
UFortTierIndicator::UFortTierIndicator() {
|
|
this->BrushSize = EFortBrushSize::VeryVerySmall;
|
|
this->InterPipPadding = 0.00f;
|
|
}
|
|
|