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