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
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 BlockPileFeature& operator=(BlockPileFeature const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 4
33 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
34
35 // vIndex: 5
36 virtual ::Block const& getBlockToPlace(::Random& random) const;
37
38 // vIndex: 0
39 virtual ~BlockPileFeature() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
52
53 MCAPI ::Block const& $getBlockToPlace(::Random& random) const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCAPI static void** $vftable();
60 // NOLINTEND
61};
Definition BlockPileFeature.h:16
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:36
Definition Feature.h:18
Definition Random.h:16
Definition Alias.h:14