LeviLamina
Loading...
Searching...
No Matches
Node.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/ViewRequest.h"
7
8struct Node {
9public:
10 // Node inner types define
11 using NodeCallback = ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)>;
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 64, ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)>> mOnEnter;
17 ::ll::TypedStorage<8, 64, ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)>> mOnExit;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 Node(Node const&);
23 Node();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI Node(
29 ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)> onEnter,
30 ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)> onExit
31 );
32
33 MCAPI ::Node& operator=(::Node const&);
34
35 MCAPI ~Node();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(
42 ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)> onEnter,
43 ::std::function<::ui::ViewRequest(uint, ::std::string const&, int)> onExit
44 );
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
Definition Node.h:5