LeviLamina
Loading...
Searching...
No Matches
PropertyMetadata.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // PropertyMetadata inner types define
8 enum class ContainedType : schar {
9 None = -1,
10 IntProperty = 0,
11 FloatProperty = 1,
12 BoolProperty = 2,
13 EnumIndexProperty = 3,
14 Count = 4,
15 };
16
17public:
18 // member variables
19 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 PropertyMetadata& operator=(PropertyMetadata const&);
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI ~PropertyMetadata();
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCFOLD void $dtor();
43 // NOLINTEND
44};
Definition PropertyMetadata.h:5
Definition Alias.h:14