LeviLamina
Loading...
Searching...
No Matches
BiomeInit.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/GeneratorType.h"
7#include "mc/world/level/newbiome/operation_node_filters/FilterBase.h"
8
9// auto generated forward declare list
10// clang-format off
11class Biome;
12class BiomeRegistry;
13namespace OperationNodeValues { struct PreBiome; }
14// clang-format on
15
16namespace OperationNodeFilters {
17
18class BiomeInit : public ::OperationNodeFilters::FilterBase<1, 1, ::Biome const*, ::OperationNodeValues::PreBiome> {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::Biome const*> mFallbackBiome;
23 ::ll::TypedStorage<8, 8, ::Biome const*> mDefaultOcean;
24 ::ll::TypedStorage<8, 120, ::std::vector<::std::pair<::Biome const*, uint>>[5]> mRegularBiomes;
25 ::ll::TypedStorage<8, 120, ::std::vector<::std::pair<::Biome const*, uint>>[5]> mSpecialBiomes;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 BiomeInit();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI BiomeInit(
36 ::BiomeRegistry const& registry,
37 ::Biome const& defaultOceanBiome,
38 ::Biome const& fallbackBiome,
39 ::GeneratorType generator
40 );
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(
47 ::BiomeRegistry const& registry,
48 ::Biome const& defaultOceanBiome,
49 ::Biome const& fallbackBiome,
50 ::GeneratorType generator
51 );
52 // NOLINTEND
53};
54
55} // namespace OperationNodeFilters
Definition BiomeRegistry.h:37
Definition Biome.h:23
Definition FilterBase.h:8
Definition PreBiome.h:11