LeviLamina
Loading...
Searching...
No Matches
DynamicJumpControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/control/JumpControl.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
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual void initializeInternal(::Mob& mob, ::JumpControlDescription* description) /*override*/;
21
22 virtual ::std::unique_ptr<::JumpControl> clone() const /*override*/;
23
24 virtual void tick(::JumpControlComponent& parent, ::Mob& mob) /*override*/;
25
26 virtual int getJumpDelay(::JumpControlComponent const& parent) const /*override*/;
27
28 virtual float getJumpPower(::JumpControlComponent const& parent) const /*override*/;
29
30 virtual ::JumpType getJumpType(::JumpControlComponent const& parent) const /*override*/;
31
32 virtual void setJumpType(::JumpControlComponent& parent, ::JumpType type) /*override*/;
33
34 virtual void resetSpeedModifier(::JumpControlComponent const& parent, ::Mob& mob) /*override*/;
35
36 virtual ~DynamicJumpControl() /*override*/ = default;
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 MCAPI int $getJumpDelay(::JumpControlComponent const& parent) const;
49
50 MCAPI float $getJumpPower(::JumpControlComponent const& parent) const;
51
52 MCAPI ::JumpType $getJumpType(::JumpControlComponent const& parent) const;
53
54 MCAPI void $setJumpType(::JumpControlComponent& parent, ::JumpType type);
55
56 MCAPI void $resetSpeedModifier(::JumpControlComponent const& parent, ::Mob& mob);
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition DynamicJumpControl.h:16
static MCAPI void ** $vftable()
Definition JumpControlComponent.h:16
Definition JumpControl.h:16
Definition Mob.h:50
Definition JumpControlDescription.h:13