LeviLamina
Loading...
Searching...
No Matches
BehaviorTreeDefinitionPtr.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9// clang-format on
10
11class BehaviorTreeDefinitionPtr {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 8, ::AutomationBehaviorTreeGroup*> mGroup;
16 ::ll::TypedStorage<8, 8, ::BehaviorTreeDefinition*> mPtr;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 BehaviorTreeDefinitionPtr& operator=(BehaviorTreeDefinitionPtr const&);
22 BehaviorTreeDefinitionPtr(BehaviorTreeDefinitionPtr const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI BehaviorTreeDefinitionPtr();
28
29 MCAPI BehaviorTreeDefinitionPtr(::BehaviorTreeDefinitionPtr&& moved);
30
31 MCFOLD ::BehaviorTreeDefinitionPtr& operator=(::BehaviorTreeDefinitionPtr&& moved);
32
33 MCAPI ~BehaviorTreeDefinitionPtr();
34 // NOLINTEND
35
36public:
37 // static variables
38 // NOLINTBEGIN
39 MCAPI static ::BehaviorTreeDefinitionPtr const& NONE();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCFOLD void* $ctor();
46
47 MCFOLD void* $ctor(::BehaviorTreeDefinitionPtr&& moved);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
Definition AutomationBehaviorTreeGroup.h:15
Definition BehaviorTreeDefinition.h:10