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
42 MCAPI ~BiomeInit();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(
49 ::BiomeRegistry const& registry,
50 ::Biome const& defaultOceanBiome,
51 ::Biome const& fallbackBiome,
52 ::GeneratorType generator
53 );
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61};
62
63} // namespace OperationNodeFilters
Definition BiomeRegistry.h:37
Definition Biome.h:24
Definition FilterBase.h:8
Definition PreBiome.h:11