LeviLamina
Loading...
Searching...
No Matches
JoinCodeIconData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JoinCodeIconData {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> toolTip;
10 ::ll::TypedStorage<8, 32, ::std::string> texture;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 JoinCodeIconData& operator=(JoinCodeIconData const&);
16 JoinCodeIconData();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI JoinCodeIconData(::JoinCodeIconData const&);
22
23 MCAPI ~JoinCodeIconData();
24 // NOLINTEND
25
26public:
27 // static variables
28 // NOLINTBEGIN
29 MCAPI static ::std::vector<::JoinCodeIconData> const& gData();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCFOLD void* $ctor(::JoinCodeIconData const&);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
Definition JoinCodeIconData.h:5