LeviLamina
Loading...
Searching...
No Matches
MountPathingGoal.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;
13// clang-format on
14
15class MountPathingGoal : public ::Goal {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mTarget;
20 ::ll::TypedStorage<4, 4, float> mSpeed;
21 ::ll::TypedStorage<4, 4, float> mTargetDistSqr;
22 ::ll::TypedStorage<1, 1, bool> mTrackTarget;
23 ::ll::TypedStorage<4, 4, int> mTimeToRecalcPath;
24 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 MountPathingGoal& operator=(MountPathingGoal const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 10
37 virtual float _getAttackReachSqr();
38
39 // vIndex: 0
40 virtual ~MountPathingGoal() /*override*/ = default;
41
42 // vIndex: 1
43 virtual bool canUse() /*override*/;
44
45 // vIndex: 2
46 virtual bool canContinueToUse() /*override*/;
47
48 // vIndex: 4
49 virtual void start() /*override*/;
50
51 // vIndex: 5
52 virtual void stop() /*override*/;
53
54 // vIndex: 6
55 virtual void tick() /*override*/;
56
57 // vIndex: 7
58 virtual void appendDebugInfo(::std::string& str) const /*override*/;
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCNAPI float $_getAttackReachSqr();
65
66 MCNAPI bool $canUse();
67
68 MCNAPI bool $canContinueToUse();
69
70 MCNAPI void $start();
71
72 MCNAPI void $stop();
73
74 MCNAPI void $tick();
75
76 MCNAPI void $appendDebugInfo(::std::string& str) const;
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCNAPI static void** $vftable();
83 // NOLINTEND
84};
Definition Actor.h:103
Definition Goal.h:14
Definition Mob.h:47
Definition MountPathingGoal.h:15
MCAPI void $stop()
MCAPI bool $canContinueToUse()
static MCAPI void ** $vftable()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI float $_getAttackReachSqr()
MCAPI void $tick()
MCAPI bool $canUse()
MCAPI void $start()