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, 8, ::Mob&> mMob;
20 ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mTarget;
21 ::ll::TypedStorage<4, 4, float> mSpeed;
22 ::ll::TypedStorage<4, 4, float> mMinTargetDistanceSquared;
23 ::ll::TypedStorage<1, 1, bool> mTrackTarget;
24 ::ll::TypedStorage<4, 4, int> mTimeToRecalculatePath;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 MountPathingGoal& operator=(MountPathingGoal const&);
30 MountPathingGoal(MountPathingGoal const&);
31 MountPathingGoal();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual bool canUse() /*override*/;
37
38 virtual bool canContinueToUse() /*override*/;
39
40 virtual void start() /*override*/;
41
42 virtual void stop() /*override*/;
43
44 virtual void tick() /*override*/;
45
46 virtual void appendDebugInfo(::std::string& str) const /*override*/;
47
48 virtual ~MountPathingGoal() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI bool $canUse();
55
56 MCAPI bool $canContinueToUse();
57
58 MCAPI void $start();
59
60 MCAPI void $stop();
61
62 MCAPI void $tick();
63
64 MCAPI void $appendDebugInfo(::std::string& str) const;
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition Actor.h:105
Definition Goal.h:14
Definition Mob.h:50
static MCAPI void ** $vftable()