LeviLamina
Loading...
Searching...
No Matches
MegaTreeCanopy.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, int> mCoreWidth;
26 ::ll::TypedStorage<1, 1, bool> mUseParsedCoreWidth;
27 ::ll::TypedStorage<1, 1, bool> mIsSimplified;
28 ::ll::TypedStorage<8, 176, ::BlockDescriptor> mLeavesBlockDescriptor;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~MegaTreeCanopy() /*override*/;
35
36 virtual ::std::optional<::BlockPos> placeCanopy(
37 ::IBlockWorldGenAPI& target,
38 ::BlockPos const& pos,
39 ::ITreeCanopy::BranchSize const& trunkSize,
40 ::Random& random,
42 ::TreeHelper::TreeParams const& treeParams,
43 ::std::vector<::BlockPos> const&,
44 ::std::vector<::ITreeCanopy::BranchSize> const&
45 ) const /*override*/;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI ::std::optional<::BlockPos> $placeCanopy(
58 ::IBlockWorldGenAPI& target,
59 ::BlockPos const& pos,
60 ::ITreeCanopy::BranchSize const& trunkSize,
61 ::Random& random,
63 ::TreeHelper::TreeParams const& treeParams,
64 ::std::vector<::BlockPos> const&,
65 ::std::vector<::ITreeCanopy::BranchSize> const&
66 ) const;
67
68
69 // NOLINTEND
70};
Definition BlockPos.h:21
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition MegaTreeCanopy.h:19
Definition Random.h:10
Definition RenderParams.h:29
Definition ITreeCanopy.h:22
Definition TreeParams.h:16