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
15#ifdef LL_PLAT_S
16#else // LL_PLAT_C
17public:
18 // prevent constructor by default
19 Button& operator=(Button const&);
20 Button(Button const&);
21
22#endif
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI Button();
27
28#ifdef LL_PLAT_C
29 MCFOLD ::npc::Button& operator=(::npc::Button&&);
30#endif
31
32 MCAPI ::npc::Button& operator=(::std::string_view newName);
33
34 MCAPI ~Button();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCFOLD void* $ctor();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCFOLD void $dtor();
47 // NOLINTEND
48};
49
50} // namespace npc
Definition Button.h:7