LeviLamina
Loading...
Searching...
No Matches
JumpControlComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/control/JumpInfo.h"
7#include "mc/world/actor/ai/control/JumpType.h"
8
9// auto generated forward declare list
10// clang-format off
12class JumpControl;
13class Mob;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mJumping;
22 ::ll::TypedStorage<1, 1, bool> mSwimming;
23 ::ll::TypedStorage<4, 4, float> mJumpPower;
24 ::ll::TypedStorage<4, 4, ::JumpType> mJumpType;
25 ::ll::TypedStorage<4, 64, ::JumpInfo[4]> mJumpInfo;
26 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::JumpControl>> mJumpControl;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
33
34public:
35 // member functions
36 // NOLINTBEGIN
38
39 MCNAPI void initMultiTypeJumpComponent(::Mob& entity, ::ActorDefinitionDescriptor& initDescription);
40
41 MCNAPI void initializeFromDefinition(::Mob& owner, ::JumpControlDescription* description);
42
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor(::JumpControlComponent const& other);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57};
Definition ActorDefinitionDescriptor.h:30
Definition JumpControlComponent.h:17
MCAPI void * $ctor(::JumpControlComponent const &other)
MCAPI ~JumpControlComponent()
MCAPI void initializeFromDefinition(::Mob &owner, ::JumpControlDescription *description)
MCAPI JumpControlComponent(::JumpControlComponent const &other)
MCAPI void $dtor()
MCAPI void initMultiTypeJumpComponent(::Mob &entity, ::ActorDefinitionDescriptor &initDescription)
Definition JumpControl.h:16
Definition Mob.h:47
Definition JumpControlDescription.h:13