LeviLamina
Loading...
Searching...
No Matches
EmergeGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h"
7#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
8#include "mc/world/actor/ai/goal/Goal.h"
9
10// auto generated forward declare list
11// clang-format off
13class Mob;
14struct Tick;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class EmergeGoal : public ::Goal {
19public:
20 // EmergeGoal inner types declare
21 // clang-format off
22 class Definition;
23 // clang-format on
24
25 // EmergeGoal inner types define
27 public:
28 // member variables
29 // NOLINTBEGIN
33 // NOLINTEND
34
35 public:
36 // prevent constructor by default
37 Definition& operator=(Definition const&);
38 Definition(Definition const&);
39 Definition();
40
41 public:
42 // virtual functions
43 // NOLINTBEGIN
44 // vIndex: 0
45 virtual ~Definition() /*override*/ = default;
46 // NOLINTEND
47
48 public:
49 // static functions
50 // NOLINTBEGIN
51 MCAPI static void buildSchema(
52 ::std::string const& name,
54 );
55 // NOLINTEND
56
57 public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63 public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68 };
69
70public:
71 // member variables
72 // NOLINTBEGIN
73 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
74 ::ll::TypedStorage<2, 2, ushort> mDurationTicks;
75 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mOnDoneEvent;
76 ::ll::TypedStorage<8, 8, ::Tick> mCooldownExpiryTick;
77 ::ll::TypedStorage<8, 8, ::Tick> mEndTick;
78 ::ll::TypedStorage<2, 2, ushort> mCooldownTicks;
79 // NOLINTEND
80
81public:
82 // virtual functions
83 // NOLINTBEGIN
84 // vIndex: 1
85 virtual bool canUse() /*override*/;
86
87 // vIndex: 2
88 virtual bool canContinueToUse() /*override*/;
89
90 // vIndex: 4
91 virtual void start() /*override*/;
92
93 // vIndex: 5
94 virtual void stop() /*override*/;
95
96 // vIndex: 6
97 virtual void tick() /*override*/;
98
99 // vIndex: 7
100 virtual void appendDebugInfo(::std::string& str) const /*override*/;
101
102 // vIndex: 0
103 virtual ~EmergeGoal() /*override*/ = default;
104 // NOLINTEND
105
106public:
107 // destructor thunk
108 // NOLINTBEGIN
109
110 // NOLINTEND
111
112public:
113 // virtual function thunks
114 // NOLINTBEGIN
115 MCAPI bool $canUse();
116
117 MCAPI bool $canContinueToUse();
118
119 MCAPI void $start();
120
121 MCAPI void $stop();
122
123 MCFOLD void $tick();
124
125 MCAPI void $appendDebugInfo(::std::string& str) const;
126 // NOLINTEND
127
128public:
129 // vftables
130 // NOLINTBEGIN
131 MCAPI static void** $vftable();
132 // NOLINTEND
133};
Definition ActorDefinitionTrigger.h:5
Definition BaseGoalDefinition.h:10
Definition EmergeGoal.h:26
Definition EmergeGoal.h:18
Definition Goal.h:14
Definition JsonSchemaObjectNode.h:8
Definition Mob.h:47
Definition Tick.h:5
Definition Alias.h:14