LeviLamina
Loading...
Searching...
No Matches
ComponentType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SharedTypes::v1_21_130::DataDrivenUI {
6
7enum class ComponentType : uchar {
8 ExtensionPoint = 0,
9 Panel = 1,
10 PanelText = 2,
11 PanelDecoration = 3,
12 PanelSpacing = 4,
13 PanelCloseButton = 5,
14 Context = 6,
15 ContextList = 7,
16 ContainerFixedGridLayout = 8,
17 ContainerItem = 9,
18 ContainerLayout = 10,
19 FormButton = 11,
20 FormDivider = 12,
21 FormDropdown = 13,
22 FormScrollView = 14,
23 FormSlider = 15,
24 FormSwitch = 16,
25 FormTextField = 17,
26 Visibility = 18,
27};
28
29}