LeviLamina
Loading...
Searching...
No Matches
MegaPineTreeCanopy.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<4, 4, float> mRadiusModifier;
26 ::ll::TypedStorage<4, 4, int> mCoreWidth;
27 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mLeavesBlockDescriptor;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~MegaPineTreeCanopy() /*override*/ = default;
35
36 // vIndex: 1
37 virtual ::std::optional<::BlockPos> placeCanopy(
38 ::IBlockWorldGenAPI& target,
39 ::BlockPos const& pos,
40 ::Random& random,
41 ::RenderParams& renderParams,
42 ::TreeHelper::TreeParams const& treeParams,
43 ::std::vector<::BlockPos> const& attachmentPositions
44 ) const /*override*/;
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI ::std::optional<::BlockPos> $placeCanopy(
51 ::IBlockWorldGenAPI& target,
52 ::BlockPos const& pos,
53 ::Random& random,
54 ::RenderParams& renderParams,
55 ::TreeHelper::TreeParams const& treeParams,
56 ::std::vector<::BlockPos> const& attachmentPositions
57 ) const;
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition BlockPos.h:17
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition MegaPineTreeCanopy.h:19
static MCAPI void ** $vftable()
Definition Random.h:10
Definition RenderParams.h:30
Definition TreeParams.h:14