LeviLamina
Loading...
Searching...
No Matches
ControlledByPlayerGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11// clang-format on
12
13class ControlledByPlayerGoal : public ::Goal {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
18 ::ll::TypedStorage<4, 4, float> mFractionalRotation;
19 ::ll::TypedStorage<4, 4, float> mFractionalRotationLimit;
20 ::ll::TypedStorage<4, 4, float> mSpeedMultiplier;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ControlledByPlayerGoal& operator=(ControlledByPlayerGoal const&);
26 ControlledByPlayerGoal(ControlledByPlayerGoal const&);
27 ControlledByPlayerGoal();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual void start() /*override*/;
33
34 virtual void stop() /*override*/;
35
36 virtual bool canUse() /*override*/;
37
38 virtual void tick() /*override*/;
39
40 virtual void appendDebugInfo(::std::string& str) const /*override*/;
41
42 virtual ~ControlledByPlayerGoal() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI bool _canBeControlledByPassenger();
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI void $start();
55
56 MCAPI void $stop();
57
58 MCAPI bool $canUse();
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};
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:50