LeviLamina
Loading...
Searching...
No Matches
GlideMoveControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/world/actor/ai/control/MoveControl.h"
8
9// auto generated forward declare list
10// clang-format off
11class Mob;
14// clang-format on
15
16class GlideMoveControl : public ::MoveControl {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, float> mSpeed;
21 ::ll::TypedStorage<4, 4, float> mStartSpeed;
22 ::ll::TypedStorage<4, 4, float> mSpeedWhenTurning;
23 ::ll::TypedStorage<4, 12, ::Vec3> mCurrentWantedPos;
24 ::ll::TypedStorage<4, 4, int> mNumberOfFrontalCollisions;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual void initializeInternal(::Mob& mob, ::MoveControlDescription const* description) /*override*/;
31
32 virtual void tick(::MoveControlComponent& parent, ::Mob& mob) /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI GlideMoveControl();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI void $initializeInternal(::Mob& mob, ::MoveControlDescription const* description);
51
52 MCAPI void $tick(::MoveControlComponent& parent, ::Mob& mob);
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
static MCAPI void ** $vftable()
Definition Mob.h:57
Definition MoveControlComponent.h:16
Definition MoveControlDescription.h:13