LeviLamina
Loading...
Searching...
No Matches
PlayerTickConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // PlayerTickConfig inner types define
8 enum class TickPolicy : uchar {
9 Greedy = 0,
10 Throttled = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<1, 1, ::PlayerTickConfig::TickPolicy> mPolicy;
17 ::ll::TypedStorage<8, 8, uint64> mMaxBatchedTicks;
18 ::ll::TypedStorage<8, 8, uint64> mMaxCreditTicks;
19 ::ll::TypedStorage<1, 1, bool> mIsStrictMovement;
20 ::ll::TypedStorage<1, 1, bool> mIsStrictDismount;
21 ::ll::TypedStorage<1, 1, bool> mIsStrictEntityInteractions;
22 // NOLINTEND
23};
Definition PlayerTickConfig.h:5