LeviLamina
Loading...
Searching...
No Matches
SubtreeNode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/bhave/BehaviorData.h"
7#include "mc/world/actor/bhave/BehaviorStatus.h"
8#include "mc/world/actor/bhave/BehaviorTreeDefinitionPtr.h"
9#include "mc/world/actor/bhave/node/BehaviorNode.h"
10
11// auto generated forward declare list
12// clang-format off
13class Actor;
14// clang-format on
15
16class SubtreeNode : public ::BehaviorNode {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::BehaviorTreeDefinitionPtr> mSubtreePtr;
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::BehaviorNode>> mSubtreeHead;
22 ::ll::TypedStorage<8, 88, ::BehaviorData> mSubtreeData;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
29
30 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI SubtreeNode();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI ::BehaviorStatus $tick(::Actor& owner);
49
50 MCAPI void $initializeFromDefinition(::Actor& owner);
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
Definition Actor.h:125
static MCAPI void ** $vftable()