LeviLamina
Loading...
Searching...
No Matches
RoofedTreeCanopy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockDescriptor.h"
7#include "mc/world/level/levelgen/feature/helpers/ITreeCanopy.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
13class Random;
14class RenderParams;
15namespace TreeHelper { struct TreeParams; }
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, int> mHeight;
23 ::ll::TypedStorage<4, 4, int> mCoreWidth;
24 ::ll::TypedStorage<1, 1, bool> mUseParsedCoreWidth;
25 ::ll::TypedStorage<4, 4, int> mOuterRadius;
26 ::ll::TypedStorage<4, 4, int> mInnerRadius;
27 ::ll::TypedStorage<8, 176, ::BlockDescriptor> mLeavesBlockDescriptor;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~RoofedTreeCanopy() /*override*/ = default;
34
35 virtual ::std::optional<::BlockPos> placeCanopy(
36 ::IBlockWorldGenAPI& target,
37 ::BlockPos const& pos,
38 ::ITreeCanopy::BranchSize const& trunkSize,
39 ::Random& random,
42 ::std::vector<::BlockPos> const&,
43 ::std::vector<::ITreeCanopy::BranchSize> const&
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 ::ITreeCanopy::BranchSize const& trunkSize,
54 ::Random& random,
57 ::std::vector<::BlockPos> const&,
58 ::std::vector<::ITreeCanopy::BranchSize> const&
59 ) const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition BlockPos.h:19
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition Random.h:10
Definition RenderParams.h:30
Definition RoofedTreeCanopy.h:18
static MCAPI void ** $vftable()
Definition ITreeCanopy.h:22
Definition TreeParams.h:14