LeviLamina
Loading...
Searching...
No Matches
AddMushroomIsland.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
16struct AddMushroomIsland : public ::OperationNodeFilters::FilterBase<3, 3, ::Biome const*, ::Biome const*> {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Biome const&> mMushroomBiome;
21 ::ll::TypedStorage<8, 8, ::BiomeRegistry const&> mBiomeRegistry;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 AddMushroomIsland& operator=(AddMushroomIsland const&);
27 AddMushroomIsland(AddMushroomIsland const&);
28 AddMushroomIsland();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI AddMushroomIsland(::Biome const& mushroomBiome, ::BiomeRegistry const& biomeRegistry);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCFOLD void* $ctor(::Biome const& mushroomBiome, ::BiomeRegistry const& biomeRegistry);
40 // NOLINTEND
41};
42
43} // namespace OperationNodeFilters
Definition BiomeRegistry.h:37
Definition Biome.h:24
Definition FilterBase.h:8