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