LeviLamina
Loading...
Searching...
No Matches
InverterNode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/bhave/BehaviorStatus.h"
7#include "mc/world/actor/bhave/node/BehaviorNode.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 InverterNode& operator=(InverterNode const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
32
33 // vIndex: 2
34 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
35
36 // vIndex: 0
37 virtual ~InverterNode() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI ::BehaviorStatus $tick(::Actor& owner);
50
51 MCFOLD void $initializeFromDefinition(::Actor& owner);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition Actor.h:104
Definition BehaviorNode.h:13
Definition InverterNode.h:14
Definition Alias.h:14