LeviLamina
Loading...
Searching...
No Matches
AzaleaTreeAndRootsFeature.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 BlockPos;
11class BlockSource;
12class Random;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 4
20 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
21
22 // vIndex: 0
23 virtual ~AzaleaTreeAndRootsFeature() /*override*/ = default;
24 // NOLINTEND
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI bool _isLushGroundReplaceable(::BlockSource& region, ::BlockPos const& pos) const;
30
31 MCNAPI bool
32 _tryPlaceAzaleaTree(::BlockSource& region, ::BlockPos const& pos, ::Random& random, uint waterDepth) const;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCNAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
Definition AzaleaTreeAndRootsFeature.h:15
static MCAPI void ** $vftable()
MCAPI bool _isLushGroundReplaceable(::BlockSource &region, ::BlockPos const &pos) const
MCAPI bool _tryPlaceAzaleaTree(::BlockSource &region, ::BlockPos const &pos, ::Random &random, uint waterDepth) const
MCAPI bool $place(::BlockSource &region, ::BlockPos const &pos, ::Random &random) const
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Feature.h:18
Definition Random.h:11