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
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 BiomeInit& operator=(BiomeInit const&);
31 BiomeInit(BiomeInit const&);
32 BiomeInit();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI BiomeInit(
38 ::BiomeRegistry const& registry,
39 ::Biome const& defaultOceanBiome,
40 ::Biome const& fallbackBiome,
41 ::GeneratorType generator
42 );
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};
56
57} // namespace OperationNodeFilters
Definition BiomeRegistry.h:30
Definition Biome.h:27
Definition BiomeInit.h:18
Definition FilterBase.h:8
Definition Alias.h:14