LeviLamina
Loading...
Searching...
No Matches
BiomeSamplesContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7
8// auto generated forward declare list
9// clang-format off
10class Biome;
11// clang-format on
12
13namespace BiomeChunkVolume {
14
15struct BiomeSamplesContainer {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::std::vector<::Biome const*>> mBiomeBuffer;
20 ::ll::TypedStorage<4, 12, ::BlockPos const> mBufferWorldOrigin;
21 ::ll::TypedStorage<4, 4, int const> mBufferSizeY;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 BiomeSamplesContainer();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI BiomeSamplesContainer(::BlockPos chunkMin, short chunkHeight);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::BlockPos chunkMin, short chunkHeight);
38 // NOLINTEND
39};
40
41} // namespace BiomeChunkVolume
Definition Biome.h:24
Definition BlockPos.h:21