LeviLamina
Loading...
Searching...
No Matches
KeyOrNameResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // KeyOrNameResult inner types define
8 enum class ResultType : int {
9 LocalizationKey = 0,
10 Name = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 32, ::std::string> mString;
17 ::ll::TypedStorage<4, 4, ::KeyOrNameResult::ResultType> mType;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI ~KeyOrNameResult();
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCFOLD void $dtor();
30 // NOLINTEND
31};
Definition KeyOrNameResult.h:5