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
16class DynamicJumpControl : public ::JumpControl {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual void initializeInternal(::Mob&, ::JumpControlDescription const*) /*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 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI DynamicJumpControl();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCFOLD void $initializeInternal(::Mob&, ::JumpControlDescription const*);
53
54 MCAPI ::std::unique_ptr<::JumpControl> $clone() const;
55
56 MCAPI void $tick(::JumpControlComponent& parent, ::Mob& mob);
57
58 MCAPI int $getJumpDelay(::JumpControlComponent const& parent) const;
59
60 MCAPI float $getJumpPower(::JumpControlComponent const& parent) const;
61
62 MCAPI ::JumpType $getJumpType(::JumpControlComponent const& parent) const;
63
64 MCAPI void $setJumpType(::JumpControlComponent& parent, ::JumpType type);
65
66 MCAPI void $resetSpeedModifier(::JumpControlComponent const& parent, ::Mob& mob);
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
static MCAPI void ** $vftable()
Definition JumpControlComponent.h:17
Definition Mob.h:57
Definition JumpControlDescription.h:14