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
11class JumpControl;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, bool> mJumping;
19 ::ll::TypedStorage<1, 1, bool> mSwimming;
20 ::ll::TypedStorage<4, 4, float> mJumpPower;
21 ::ll::TypedStorage<4, 4, ::JumpType> mJumpType;
22 ::ll::TypedStorage<4, 64, ::JumpInfo[4]> mJumpInfo;
23 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::JumpControl>> mJumpControl;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCNAPI void* $ctor(::JumpControlComponent const& other);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50};
Definition JumpControlComponent.h:14
MCAPI void * $ctor(::JumpControlComponent const &other)
MCAPI ~JumpControlComponent()
MCAPI JumpControlComponent(::JumpControlComponent const &other)
MCAPI void $dtor()
Definition JumpControl.h:16