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 // vIndex: 0
21 virtual ~JumpControl() /*override*/ = default;
22
23 // vIndex: 1
24 virtual void initializeInternal(::Mob& mob, ::JumpControlDescription* description);
25
26 // vIndex: 2
27 virtual ::std::unique_ptr<::JumpControl> clone() const;
28
29 // vIndex: 3
30 virtual void tick(::JumpControlComponent& parent, ::Mob& mob);
31
32 // vIndex: 4
33 virtual int getJumpDelay(::JumpControlComponent const&) const;
34
35 // vIndex: 5
36 virtual float getJumpPower(::JumpControlComponent const& parent) const;
37
38 // vIndex: 6
39 virtual ::JumpType getJumpType(::JumpControlComponent const&) const;
40
41 // vIndex: 7
42 virtual void setJumpType(::JumpControlComponent&, ::JumpType);
43
44 // vIndex: 8
45 virtual void resetSpeedModifier(::JumpControlComponent const&, ::Mob&);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI void $initializeInternal(::Mob& mob, ::JumpControlDescription* description);
52
53 MCNAPI ::std::unique_ptr<::JumpControl> $clone() const;
54
55 MCNAPI void $tick(::JumpControlComponent& parent, ::Mob& mob);
56
57 MCNAPI int $getJumpDelay(::JumpControlComponent const&) const;
58
59 MCNAPI float $getJumpPower(::JumpControlComponent const& parent) const;
60
61 MCNAPI ::JumpType $getJumpType(::JumpControlComponent const&) const;
62
63 MCNAPI void $setJumpType(::JumpControlComponent&, ::JumpType);
64
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition Control.h:5
Definition JumpControlComponent.h:14
Definition JumpControl.h:16
MCAPI void $tick(::JumpControlComponent &parent, ::Mob &mob)
MCAPI float $getJumpPower(::JumpControlComponent const &parent) const
MCAPI int $getJumpDelay(::JumpControlComponent const &) const
MCAPI ::std::unique_ptr<::JumpControl > $clone() const
MCAPI void $resetSpeedModifier(::JumpControlComponent const &, ::Mob &)
static MCAPI void ** $vftable()
MCAPI void $setJumpType(::JumpControlComponent &, ::JumpType)
MCAPI::JumpType $getJumpType(::JumpControlComponent const &) const
MCAPI void $initializeInternal(::Mob &mob, ::JumpControlDescription *description)
Definition Mob.h:47
Definition JumpControlDescription.h:13