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