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