LeviLamina
Loading...
Searching...
No Matches
LayoutAxisType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ui {
6
7enum class LayoutAxisType : int {
8 Absolute = 0,
9 ParentRelativeX = 1,
10 ParentRelativeY = 2,
11 SelfRelativeX = 3,
12 SelfRelativeY = 4,
13 SizeOfChildrenX = 5,
14 SizeOfChildrenY = 6,
15 SizeOfLargestChildX = 7,
16 SizeOfLargestChildY = 8,
17 SizeOfMaxSiblingWidth = 9,
18 SizeOfMaxSiblingHeight = 10,
19 None = 11,
20 Count = 12,
21};
22
23}