LeviLamina
Loading...
Searching...
No Matches
SeatDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/util/molang/ExpressionNode.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 12, ::Vec3> mPosition;
14 ::ll::TypedStorage<4, 4, int> mMinSeatCount;
15 ::ll::TypedStorage<4, 4, int> mMaxSeatCount;
16 ::ll::TypedStorage<1, 1, bool> mHasSeatRotation;
17 ::ll::TypedStorage<8, 16, ::ExpressionNode> mSeatRotation;
18 ::ll::TypedStorage<1, 1, bool> mLockPassengerRotation;
19 ::ll::TypedStorage<4, 4, float> mLockPassengerRotationDegrees;
20 ::ll::TypedStorage<4, 8, ::std::optional<float>> mThirdPersonCameraRadiusOverride;
21 ::ll::TypedStorage<4, 8, ::std::optional<float>> mCameraRelaxDistanceSmoothing;
22 // NOLINTEND
23
24#ifdef LL_PLAT_S
25public:
26 // prevent constructor by default
28
29#else // LL_PLAT_C
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_S
36#endif
37
38 MCAPI void addRotationExpressionNode(::ExpressionNode const& node);
39
40#ifdef LL_PLAT_S
41 MCAPI ::SeatDescription& operator=(::SeatDescription const&);
42#endif
43
44 MCAPI bool operator==(::SeatDescription const& seat) const;
45
46 MCAPI void setCameraRelaxDistanceSmoothing(float const& value);
47
48 MCAPI void setThirdPersonCamerRadiusOverride(float const& value);
49
50 MCAPI ~SeatDescription();
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCAPI static ::SeatDescription const& EMPTY();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62#ifdef LL_PLAT_S
63 MCAPI void* $ctor(::SeatDescription const&);
64#endif
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72};
Definition ExpressionNode.h:34
Definition SeatDescription.h:9