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 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCAPI void $tick(::MoveControlComponent& parent, ::Mob& mob);
35
36 MCAPI void $setWantedPosition(::MoveControlComponent& parent, ::Mob& mob, ::Vec3 const& pos, float speed);
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
Definition HopMoveControl.h:15
static MCAPI void ** $vftable()
Definition Mob.h:55
Definition MoveControlComponent.h:15
Definition MoveControl.h:16
Definition Vec3.h:10