mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
18 lines
499 B
C++
18 lines
499 B
C++
#include "FortActorCanvasSlot.h"
|
|
|
|
void UFortActorCanvasSlot::SetVerticalAlignment(TEnumAsByte<EVerticalAlignment> InVerticalAlignment) {
|
|
}
|
|
|
|
void UFortActorCanvasSlot::SetHorizontalAlignment(TEnumAsByte<EHorizontalAlignment> InHorizontalAlignment) {
|
|
}
|
|
|
|
void UFortActorCanvasSlot::SetCanAutoRemove(bool bAllowAutoRemove) {
|
|
}
|
|
|
|
UFortActorCanvasSlot::UFortActorCanvasSlot() {
|
|
this->HorizontalAlignment = HAlign_Center;
|
|
this->VerticalAlignment = VAlign_Center;
|
|
this->bCanAutoRemove = true;
|
|
}
|
|
|