LeviLamina
Loading...
Searching...
No Matches
InteractActionNode.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
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 InteractActionNode& operator=(InteractActionNode const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
35
36 // vIndex: 2
37 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
38
39 // vIndex: 0
40 virtual ~InteractActionNode() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI ::BehaviorStatus $tick(::Actor& owner);
47
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition Actor.h:103
Definition BehaviorNode.h:13
Definition InteractActionNode.h:14
static MCAPI void ** $vftable()
MCAPI void $initializeFromDefinition(::Actor &owner)
MCAPI::BehaviorStatus $tick(::Actor &owner)
Definition Alias.h:14