LeviLamina
Loading...
Searching...
No Matches
AddBiomeIsland.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/newbiome/operation_node_filters/FilterBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class Biome;
11class BiomeRegistry;
12// clang-format on
13
14namespace OperationNodeFilters {
15
16class AddBiomeIsland : public ::OperationNodeFilters::FilterBase<3, 3, ::Biome const*, ::Biome const*> {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Biome const*> mDefaultIsland;
21 ::ll::TypedStorage<8, 8, ::Biome const*> mSpecialIsland;
22 ::ll::TypedStorage<8, 24, ::std::vector<::Biome const*>> mShallowOceanBiomes;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 AddBiomeIsland();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI AddBiomeIsland(
33 ::BiomeRegistry const& biomeRegistry,
34 ::Biome const& defaultIslandBiome,
35 ::Biome const& specialIslandBiome
36 );
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void*
43 $ctor(::BiomeRegistry const& biomeRegistry, ::Biome const& defaultIslandBiome, ::Biome const& specialIslandBiome);
44 // NOLINTEND
45};
46
47} // namespace OperationNodeFilters
Definition BiomeRegistry.h:37
Definition Biome.h:24
Definition FilterBase.h:8