LeviLamina
Loading...
Searching...
No Matches
Tick.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct Tick {
6public:
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
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 8, uint64> tickID;
17 // NOLINTEND
18
19public:
20 // static variables
21 // NOLINTBEGIN
22 MCAPI static ::Tick const& MAX();
23 // NOLINTEND
24};
Definition Tick.h:5