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 // prevent constructor by default
22 BiomeArea();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI BiomeArea(::BoundingBox const& area, uint scale);
28
29 MCNAPI ~BiomeArea();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(::BoundingBox const& area, uint scale);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43};
Definition BiomeArea.h:11
MCAPI BiomeArea(::BoundingBox const &area, uint scale)
MCAPI void * $ctor(::BoundingBox const &area, uint scale)
MCAPI void $dtor()
MCAPI ~BiomeArea()
Definition Biome.h:26
Definition BoundingBox.h:13