LeviLamina
Loading...
Searching...
No Matches
HopMoveControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/control/MoveControl.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
12class Vec3;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, int> mJumpDelayTicks;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual void tick(::MoveControlComponent& parent, ::Mob& mob) /*override*/;
26
27 virtual void
28 setWantedPosition(::MoveControlComponent& parent, ::Mob& mob, ::Vec3 const& pos, float speed) /*override*/;
29
30 virtual ~HopMoveControl() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI void $tick(::MoveControlComponent& parent, ::Mob& mob);
37
38 MCAPI void $setWantedPosition(::MoveControlComponent& parent, ::Mob& mob, ::Vec3 const& pos, float speed);
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
Definition HopMoveControl.h:15
static MCAPI void ** $vftable()
Definition Mob.h:50
Definition MoveControlComponent.h:16
Definition MoveControl.h:16
Definition Vec3.h:10