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 virtual void clientTick(::Mob& mob);
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30 MCAPI void $clientTick(::Mob& mob);
31
32
33 // NOLINTEND
34
35public:
36 // vftables
37 // NOLINTBEGIN
38 MCNAPI static void** $vftable();
39 // NOLINTEND
40};
Definition BodyControl.h:13
static MCAPI void ** $vftable()
Definition Control.h:5
Definition Mob.h:56