LeviLamina
Loading...
Searching...
No Matches
OverworldGenerationRulesBiomeComponentGlue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/glue/IBiomeComponentGlue.h"
7
8// auto generated forward declare list
9// clang-format off
10class Biome;
11class BiomeRegistry;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::std::vector<::gsl::not_null<::Biome const*>>> mHillsTransformationBiomes;
19 ::ll::TypedStorage<8, 24, ::std::vector<::gsl::not_null<::Biome const*>>> mMutateTransformationBiomes;
20 ::ll::TypedStorage<8, 24, ::std::vector<::gsl::not_null<::Biome const*>>> mRiverTransformationBiomes;
21 ::ll::TypedStorage<8, 24, ::std::vector<::gsl::not_null<::Biome const*>>> mShoreTransformationBiomes;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual bool
28 resolveAndValidate(::entt::meta_any const& biomeJsonComponent, ::BiomeRegistry const& biomeRegistry) /*override*/;
29
30 virtual void applyToBiome(::Biome& biome, ::entt::meta_any const& biomeJsonComponent) const /*override*/;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI bool $resolveAndValidate(::entt::meta_any const& biomeJsonComponent, ::BiomeRegistry const& biomeRegistry);
37
38 MCAPI void $applyToBiome(::Biome& biome, ::entt::meta_any const& biomeJsonComponent) const;
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
Definition BiomeRegistry.h:37
Definition Biome.h:24
Definition IBiomeComponentGlue.h:13
Definition OverworldGenerationRulesBiomeComponentGlue.h:14