LeviLamina
Loading...
Searching...
No Matches
LevelSeed64.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // LevelSeed64 inner types define
8 using ValueType = uint64;
9
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 8, uint64> mValue;
14 // NOLINTEND
15
16public:
17 // member functions
18 // NOLINTBEGIN
19#ifdef LL_PLAT_C
20 MCFOLD ::std::string toUiString() const;
21#endif
22 // NOLINTEND
23
24public:
25 // static functions
26 // NOLINTBEGIN
27 MCAPI static ::LevelSeed64 fromUnsigned32(uint value);
28 // NOLINTEND
29};
Definition LevelSeed64.h:5