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 // prevent constructor by default
32 SendEventGoal& operator=(SendEventGoal const&);
33 SendEventGoal(SendEventGoal const&);
34 SendEventGoal();
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 virtual void appendDebugInfo(::std::string& str) const /*override*/;
40
41 virtual bool canUse() /*override*/;
42
43 virtual bool canContinueToUse() /*override*/;
44
45 virtual void start() /*override*/;
46
47 virtual void stop() /*override*/;
48
49 virtual void tick() /*override*/;
50
51 virtual ~SendEventGoal() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCAPI int _selectBestSpell();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI void $appendDebugInfo(::std::string& str) const;
64
65 MCAPI bool $canUse();
66
67 MCAPI bool $canContinueToUse();
68
69 MCAPI void $start();
70
71 MCAPI void $stop();
72
73 MCAPI void $tick();
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
Definition Actor.h:105
Definition Goal.h:14
Definition Mob.h:50
static MCAPI void ** $vftable()
Definition SendEventData.h:14