mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
13 lines
343 B
C++
13 lines
343 B
C++
#include "FortModalContainerSizeEntry.h"
|
|
|
|
FFortModalContainerSizeEntry::FFortModalContainerSizeEntry() {
|
|
this->AbsoluteWidth = 0.00f;
|
|
this->TopPercent = 0.00f;
|
|
this->MiddlePercent = 0.00f;
|
|
this->BottomPercent = 0.00f;
|
|
this->VerticalPadding = 0.00f;
|
|
this->HorizontalPadding = 0.00f;
|
|
this->ContentPadding = 0.00f;
|
|
}
|
|
|