LeviLamina
Loading...
Searching...
No Matches
MovementAttributesComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // MovementAttributesComponent inner types define
8 using MemberPtr = ::std::optional<float> MovementAttributesComponent::*;
9
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 8, ::std::optional<float>> mMovementSpeed;
14 ::ll::TypedStorage<4, 8, ::std::optional<float>> mUnderwaterMovementSpeed;
15 ::ll::TypedStorage<4, 8, ::std::optional<float>> mLavaMovementSpeed;
16 ::ll::TypedStorage<4, 8, ::std::optional<float>> mJumpStrength;
17 ::ll::TypedStorage<4, 8, ::std::optional<float>> mHealth;
18 ::ll::TypedStorage<4, 8, ::std::optional<float>> mHunger;
19 // NOLINTEND
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI bool operator==(::MovementAttributesComponent const& other) const;
25 // NOLINTEND
26};
Definition MovementAttributesComponent.h:5