LeviLamina
Loading...
Searching...
No Matches
GuardianAttackGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Guardian;
11// clang-format on
12
13class GuardianAttackGoal : public ::Goal {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Guardian&> mGuardian;
18 ::ll::TypedStorage<4, 4, int> mAttackTicks;
19 ::ll::TypedStorage<4, 4, int> mSoundDelayTicks;
20 ::ll::TypedStorage<4, 4, int> mMagicDamage;
21 ::ll::TypedStorage<4, 4, int> mHardModeExtraMagicDamage;
22 ::ll::TypedStorage<4, 4, int> mElderExtraMagicDamage;
23 ::ll::TypedStorage<4, 4, float> mMaxRotationX;
24 ::ll::TypedStorage<4, 4, float> mMaxHeadRotationY;
25 ::ll::TypedStorage<4, 4, float> mMinDistance;
26 ::ll::TypedStorage<1, 1, bool> mLastCanSinkState;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 GuardianAttackGoal& operator=(GuardianAttackGoal const&);
32 GuardianAttackGoal(GuardianAttackGoal const&);
33 GuardianAttackGoal();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual bool canUse() /*override*/;
39
40 virtual bool canContinueToUse() /*override*/;
41
42 virtual void start() /*override*/;
43
44 virtual void tick() /*override*/;
45
46 virtual void stop() /*override*/;
47
48 virtual void appendDebugInfo(::std::string& str) const /*override*/;
49
50 virtual ~GuardianAttackGoal() /*override*/ = default;
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI bool $canUse();
57
58 MCAPI bool $canContinueToUse();
59
60 MCAPI void $start();
61
62 MCAPI void $tick();
63
64 MCAPI void $stop();
65
66 MCAPI void $appendDebugInfo(::std::string& str) const;
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition Goal.h:14
static MCAPI void ** $vftable()
Definition Guardian.h:24