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 // member functions
17 // NOLINTBEGIN
18 MCAPI Button();
19
20 MCAPI ::npc::Button& operator=(::std::string_view newName);
21
22 MCAPI ~Button();
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCFOLD void* $ctor();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36};
37
38} // namespace npc
Definition Button.h:7