LeviLamina
Loading...
Searching...
No Matches
CachedHeightGenerator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8class BlockVolume;
9class ChunkPos;
10class Dimension;
11// clang-format on
12
13namespace CachedHeightGenerator {
14// functions
15// NOLINTBEGIN
16MCAPI short cachedGenerationOfTerrainHeight(
17 ::BlockPos const& pos,
18 ::Dimension& dimension,
19 ::BlockVolume& blockVolume,
20 ::std::unordered_map<::ChunkPos, ::std::unique_ptr<::std::vector<short>>>& chunkHeightCache
21);
22// NOLINTEND
23
24} // namespace CachedHeightGenerator
Definition BlockPos.h:18
Definition BlockVolume.h:11
Definition ChunkPos.h:11
Definition Dimension.h:83