LeviLamina
Loading...
Searching...
No Matches
IBiomeComponentGlue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Biome;
8class BiomeRegistry;
9class Block;
10namespace SharedTypes::v1_20_60 { struct BlockSpecifier; }
11namespace SharedTypes::v1_20_60 { struct IBiomeJsonComponent; }
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~IBiomeComponentGlue() = default;
20
21 // vIndex: 1
22 virtual bool resolveAndValidate(::SharedTypes::v1_20_60::IBiomeJsonComponent const&, ::BiomeRegistry const&) = 0;
23
24 // vIndex: 2
25 virtual void applyToBiome(::Biome&, ::SharedTypes::v1_20_60::IBiomeJsonComponent const&) const = 0;
26 // NOLINTEND
27
28public:
29 // static functions
30 // NOLINTBEGIN
31 MCAPI static ::Block const*
32 _getResolvedBlock(::std::string const& fieldName, ::SharedTypes::v1_20_60::BlockSpecifier const& blockSpecifier);
33
34 MCAPI static ::std::vector<::Block const*> _getResolvedBlocks(
35 ::std::string const& fieldName,
36 ::std::vector<::SharedTypes::v1_20_60::BlockSpecifier> const& blockSpecifiers
37 );
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43
44 // NOLINTEND
45};
Definition BiomeRegistry.h:35
Definition Biome.h:23
Definition Block.h:37
Definition IBiomeComponentGlue.h:14
Definition BlockSpecifier.h:12
Definition IBiomeJsonComponent.h:10