LeviLamina
Loading...
Searching...
No Matches
ReplayStateConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components/ReplayStateConfigThresholds.h"
7#include "mc/entity/components/ReplayStateMode.h"
8
9struct ReplayStateConfig {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 12, ::ReplayStateConfigThresholds> mSupportedThresholds;
14 ::ll::TypedStorage<1, 1, ::ReplayStateMode> mMode;
15 ::ll::TypedStorage<1, 1, uchar> mMinCorrectionDelay;
16 ::ll::TypedStorage<1, 1, uchar> mMaxCorrectionDelay;
17 ::ll::TypedStorage<2, 2, ushort> mHistorySize;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ReplayStateConfig();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI explicit ReplayStateConfig(::ReplayStateMode mode);
28
29 MCAPI uint64 getSanitizedHistorySize() const;
30
31#ifdef LL_PLAT_S
32 MCAPI void setReplayStateConfigThresholds(float baseThreshold);
33#endif
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::ReplayStateMode mode);
40 // NOLINTEND
41};