LeviLamina
Loading...
Searching...
No Matches
JumpControl.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#include "mc/world/actor/ai/control/JumpType.h"
8
9// auto generated forward declare list
10// clang-format off
12class Mob;
14// clang-format on
15
16class JumpControl : public ::Control {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~JumpControl() /*override*/ = default;
21
22 virtual void initializeInternal(::Mob& mob, ::JumpControlDescription* description);
23
24 virtual ::std::unique_ptr<::JumpControl> clone() const;
25
26 virtual void tick(::JumpControlComponent& parent, ::Mob& mob);
27
28 virtual int getJumpDelay(::JumpControlComponent const&) const;
29
30 virtual float getJumpPower(::JumpControlComponent const& parent) const;
31
32 virtual ::JumpType getJumpType(::JumpControlComponent const&) const;
33
34 virtual void setJumpType(::JumpControlComponent&, ::JumpType);
35
36 virtual void resetSpeedModifier(::JumpControlComponent const&, ::Mob&);
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCFOLD void $initializeInternal(::Mob& mob, ::JumpControlDescription* description);
43
44 MCAPI ::std::unique_ptr<::JumpControl> $clone() const;
45
46 MCAPI void $tick(::JumpControlComponent& parent, ::Mob& mob);
47
48 MCFOLD int $getJumpDelay(::JumpControlComponent const&) const;
49
50 MCAPI float $getJumpPower(::JumpControlComponent const& parent) const;
51
52 MCFOLD ::JumpType $getJumpType(::JumpControlComponent const&) const;
53
54 MCFOLD void $setJumpType(::JumpControlComponent&, ::JumpType);
55
56 MCFOLD void $resetSpeedModifier(::JumpControlComponent const&, ::Mob&);
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition Control.h:5
Definition JumpControlComponent.h:16
Definition JumpControl.h:16
static MCAPI void ** $vftable()
Definition Mob.h:50
Definition JumpControlDescription.h:13