LeviLamina
Loading...
Searching...
No Matches
PropertyMetadata.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
9public:
10 // PropertyMetadata inner types define
11 enum class ContainedType : schar {
12 None = -1,
13 IntProperty = 0,
14 FloatProperty = 1,
15 BoolProperty = 2,
16 EnumIndexProperty = 3,
17 Count = 4,
18 };
19
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 48, ::HashedString> mName;
24 ::ll::TypedStorage<1, 1, ::PropertyMetadata::ContainedType> mType;
25 ::ll::TypedStorage<8, 8, uint64> mOverallIndex;
26 ::ll::TypedStorage<8, 8, uint64> mTypeArrayIndex;
27 ::ll::TypedStorage<1, 1, bool> mClientSync;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI ~PropertyMetadata();
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
Definition PropertyMetadata.h:8