LeviLamina
Loading...
Searching...
No Matches
DragonStrafePlayerGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/WeakEntityRef.h"
7#include "mc/world/actor/ai/goal/DragonBaseGoal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Path;
13// clang-format on
14
15class DragonStrafePlayerGoal : public ::DragonBaseGoal {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::WeakEntityRef> mAttackTarget;
20 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mCurrentPath;
21 ::ll::TypedStorage<1, 1, bool> mClockwise;
22 ::ll::TypedStorage<1, 1, bool> mDone;
23 ::ll::TypedStorage<4, 4, int> mHasTargetTicks;
24 ::ll::TypedStorage<4, 4, int> mRangeAndViewTicks;
25 ::ll::TypedStorage<4, 4, float> mFireballPower;
26 ::ll::TypedStorage<4, 4, float> mFireballRange;
27 ::ll::TypedStorage<4, 4, float> mSwitchDirectionProbability;
28 ::ll::TypedStorage<4, 4, float> mViewAngle;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual bool canUse() /*override*/;
35
36 virtual bool canContinueToUse() /*override*/;
37
38 virtual void start() /*override*/;
39
40 virtual void stop() /*override*/;
41
42 virtual void tick() /*override*/;
43
44 virtual void appendDebugInfo(::std::string& str) const /*override*/;
45
46 virtual ~DragonStrafePlayerGoal() /*override*/ = default;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
52 MCAPI void findNewTarget();
53
54 MCAPI void navigateToNextPathNode();
55
56 MCAPI void setTarget(::Actor* target);
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI bool $canUse();
63
64 MCAPI bool $canContinueToUse();
65
66 MCAPI void $start();
67
68 MCAPI void $stop();
69
70 MCAPI void $tick();
71
72 MCAPI void $appendDebugInfo(::std::string& str) const;
73
74
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCAPI static void** $vftable();
81 // NOLINTEND
82};
Definition Actor.h:105
Definition DragonStrafePlayerGoal.h:15
Definition Path.h:16