LeviLamina
Loading...
Searching...
No Matches
VegetationFeature.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 VegetationFeature& operator=(VegetationFeature 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: 0
36 virtual ~VegetationFeature() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static bool
43 placeBlock(::BlockSource& region, ::Block const& blockToPlace, ::BlockPos const& pos, ::Random& random);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:36
Definition Feature.h:18
Definition Random.h:16
Definition VegetationFeature.h:16
Definition Alias.h:14