LeviLamina
Loading...
Searching...
No Matches
BiomeArea.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Biome;
8class BoundingBox;
9// clang-format on
10
11class BiomeArea {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 4, uint> mStrideX;
16 ::ll::TypedStorage<4, 4, uint> mStrideY;
17 ::ll::TypedStorage<8, 24, ::std::vector<::Biome const*>> mBiomes;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI BiomeArea(::BoundingBox const& area, uint scale);
24
25 MCAPI ~BiomeArea();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCAPI void* $ctor(::BoundingBox const& area, uint scale);
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCFOLD void $dtor();
38 // NOLINTEND
39};
Definition BiomeArea.h:11
Definition Biome.h:27
Definition BoundingBox.h:18