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};
30
31} // namespace OperationNodeFilters
Definition BiomeRegistry.h:37
Definition Biome.h:23
Definition FilterBase.h:8