LeviLamina
Loading...
Searching...
No Matches
SendEventGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/TempEPtr.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Mob;
13struct SendEventData;
14// clang-format on
15
16class SendEventGoal : public ::Goal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Mob&> mCaster;
21 ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mTarget;
22 ::ll::TypedStorage<8, 24, ::std::vector<::SendEventData>> mSpells;
23 ::ll::TypedStorage<4, 4, int> mCurrentTick;
24 ::ll::TypedStorage<4, 4, int> mCastTicksRemaining;
25 ::ll::TypedStorage<4, 4, int> mCurrentSpellIndex;
26 ::ll::TypedStorage<4, 4, int> mCurrentSpellStage;
27 ::ll::TypedStorage<8, 8, uint64> mCooldownStopTick;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 7
34 virtual void appendDebugInfo(::std::string& str) const /*override*/;
35
36 // vIndex: 1
37 virtual bool canUse() /*override*/;
38
39 // vIndex: 2
40 virtual bool canContinueToUse() /*override*/;
41
42 // vIndex: 4
43 virtual void start() /*override*/;
44
45 // vIndex: 5
46 virtual void stop() /*override*/;
47
48 // vIndex: 6
49 virtual void tick() /*override*/;
50
51 // vIndex: 0
52 virtual ~SendEventGoal() /*override*/;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCAPI int _selectBestSpell();
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI void $appendDebugInfo(::std::string& str) const;
71
72 MCAPI bool $canUse();
73
74 MCAPI bool $canContinueToUse();
75
76 MCAPI void $start();
77
78 MCAPI void $stop();
79
80 MCAPI void $tick();
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCAPI static void** $vftable();
87 // NOLINTEND
88};
Definition Actor.h:104
Definition Goal.h:14
Definition Mob.h:47
Definition SendEventGoal.h:16
Definition SendEventData.h:14