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