LeviLamina
Loading...
Searching...
No Matches
SpeleothemFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/IFeature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class HashedString;
13class Random;
14// clang-format on
15
16class SpeleothemFeature : public ::IFeature {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::HashedString const&> mBaseBlock;
21 ::ll::TypedStorage<8, 8, ::HashedString const&> mPointedBlock;
22 ::ll::TypedStorage<8, 8, ::std::vector<::std::reference_wrapper<::HashedString const>> const&> mReplaceableBlocks;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 SpeleothemFeature& operator=(SpeleothemFeature const&);
28 SpeleothemFeature(SpeleothemFeature const&);
29 SpeleothemFeature();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI void
41 _createSpeleothemBasePatch(::IBlockWorldGenAPI& target, ::Random& random, ::BlockPos const& rootPos) const;
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition BlockPos.h:21
Definition HashedString.h:5
Definition IBlockWorldGenAPI.h:25
Definition IFeature.h:19
Definition Random.h:10
static MCAPI void ** $vftable()
Definition IFeature.h:27
Definition context.h:5