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/BaseGoal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Mob;
13// clang-format on
14
15class MountPathingGoal : public ::BaseGoal {
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 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI bool $canUse();
53
54 MCAPI bool $canContinueToUse();
55
56 MCAPI void $start();
57
58 MCAPI void $stop();
59
60 MCAPI void $tick();
61
62 MCAPI void $appendDebugInfo(::std::string& str) const;
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition Actor.h:125
Definition Mob.h:57
static MCAPI void ** $vftable()