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