LeviLamina
Loading...
Searching...
No Matches
PineTreeCanopy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/IntRange.h"
7#include "mc/world/level/block/BlockDescriptor.h"
8#include "mc/world/level/levelgen/feature/helpers/ITreeCanopy.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
14class Random;
15class RenderParams;
16namespace TreeHelper { struct TreeParams; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<4, 8, ::IntRange> mHeight;
24 ::ll::TypedStorage<4, 4, int> mRadius;
25 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mLeavesBlockDescriptor;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~PineTreeCanopy() /*override*/ = default;
32
33 virtual ::std::optional<::BlockPos> placeCanopy(
34 ::IBlockWorldGenAPI& target,
35 ::BlockPos const& pos,
36 ::Random& random,
37 ::RenderParams& renderParams,
38 ::TreeHelper::TreeParams const& treeParams,
39 ::std::vector<::BlockPos> const& attachmentPositions
40 ) const /*override*/;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI ::std::optional<::BlockPos> $placeCanopy(
47 ::IBlockWorldGenAPI& target,
48 ::BlockPos const& pos,
49 ::Random& random,
50 ::RenderParams& renderParams,
51 ::TreeHelper::TreeParams const& treeParams,
52 ::std::vector<::BlockPos> const& attachmentPositions
53 ) const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockPos.h:19
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition PineTreeCanopy.h:19
static MCAPI void ** $vftable()
Definition Random.h:10
Definition RenderParams.h:30
Definition TreeParams.h:14