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/BaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Guardian;
11class Mob;
12// clang-format on
13
14class GuardianAttackGoal : public ::BaseGoal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Guardian&> mGuardian;
19 ::ll::TypedStorage<4, 4, int> mAttackTicks;
20 ::ll::TypedStorage<4, 4, int> mSoundDelayTicks;
21 ::ll::TypedStorage<4, 4, int> mMagicDamage;
22 ::ll::TypedStorage<4, 4, int> mHardModeExtraMagicDamage;
23 ::ll::TypedStorage<4, 4, int> mElderExtraMagicDamage;
24 ::ll::TypedStorage<4, 4, float> mMaxRotationX;
25 ::ll::TypedStorage<4, 4, float> mMaxHeadRotationY;
26 ::ll::TypedStorage<4, 4, float> mMinDistance;
27 ::ll::TypedStorage<1, 1, bool> mLastCanSinkState;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 GuardianAttackGoal& operator=(GuardianAttackGoal const&);
33 GuardianAttackGoal(GuardianAttackGoal const&);
34 GuardianAttackGoal();
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 virtual bool canUse() /*override*/;
40
41 virtual bool canContinueToUse() /*override*/;
42
43 virtual void start() /*override*/;
44
45 virtual void tick() /*override*/;
46
47 virtual void stop() /*override*/;
48
49 virtual void appendDebugInfo(::std::string& str) const /*override*/;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCAPI explicit GuardianAttackGoal(::Mob& mob);
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(::Mob& mob);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCAPI bool $canUse();
68
69 MCAPI bool $canContinueToUse();
70
71 MCAPI void $start();
72
73 MCAPI void $tick();
74
75 MCAPI void $stop();
76
77 MCAPI void $appendDebugInfo(::std::string& str) const;
78
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
static MCAPI void ** $vftable()
Definition Guardian.h:25
Definition Mob.h:57