LeviLamina
Loading...
Searching...
No Matches
Tick.h
1
#pragma once
2
3
#include "mc/_HeaderOutputPredefine.h"
4
5
struct
Tick
{
6
public
:
7
[[nodiscard]]
constexpr
bool
operator==(
Tick
const
& other)
const
noexcept
{
return
tickID == other.tickID; }
8
9
[[nodiscard]]
constexpr
std::strong_ordering operator<=>(
Tick
const
& other)
const
noexcept
{
10
return
tickID <=> other.tickID;
11
}
12
13
public
:
14
// member variables
15
// NOLINTBEGIN
16
::ll::TypedStorage<8, 8, uint64> tickID;
17
// NOLINTEND
18
19
public
:
20
// static variables
21
// NOLINTBEGIN
22
MCAPI static ::Tick
const
& MAX();
23
// NOLINTEND
24
};
Tick
Definition
Tick.h:5
src
mc
world
level
Tick.h
Generated on Sat Apr 26 2025 05:56:32 for LeviLamina by
1.12.0