LeviLamina
Loading...
Searching...
No Matches
ActivateToolNode.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
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ActivateToolNode& operator=(ActivateToolNode const&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
37
38 // vIndex: 2
39 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
40
41 // vIndex: 0
42 virtual ~ActivateToolNode() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI ::BehaviorStatus $tick(::Actor& owner);
55
56 MCFOLD void $initializeFromDefinition(::Actor& owner);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition ActivateToolNode.h:14
Definition Actor.h:104
Definition BehaviorNode.h:13
Definition Alias.h:14