LeviLamina
Loading...
Searching...
No Matches
ChunkKey.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/AutomaticID.h"
7
8// auto generated forward declare list
9// clang-format off
10class ChunkPos;
11class Dimension;
12// clang-format on
13
14class ChunkKey {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::ChunkPos const> pos;
19 ::ll::TypedStorage<4, 4, ::DimensionType const> id;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI uint64 hashCode() const;
26 // NOLINTEND
27};
Definition ChunkKey.h:14
Definition ChunkPos.h:11
Definition Dimension.h:83