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 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI explicit BlockPileFeature(::Block const& block);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::Block const& block);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
53
54 MCAPI ::Block const& $getBlockToPlace(::Random& random) const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
static MCAPI void ** $vftable()
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Block.h:69
Definition Random.h:10