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