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/world/level/levelgen/feature/helpers/ITreeCanopy.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
12class Random;
13class RenderParams;
14namespace TreeHelper { struct TreeParams; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 MegaTreeCanopy& operator=(MegaTreeCanopy const&);
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 0
38 virtual ~MegaTreeCanopy() /*override*/ = default;
39
40 // vIndex: 1
41 virtual ::std::optional<::BlockPos> placeCanopy(
42 ::IBlockWorldGenAPI& target,
43 ::BlockPos const& pos,
44 ::Random& random,
45 ::RenderParams& renderParams,
46 ::TreeHelper::TreeParams const& treeParams,
47 ::std::vector<::BlockPos> const& attachmentPositions
48 ) const /*override*/;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI ::std::optional<::BlockPos> $placeCanopy(
61 ::IBlockWorldGenAPI& target,
62 ::BlockPos const& pos,
63 ::Random& random,
64 ::RenderParams& renderParams,
65 ::TreeHelper::TreeParams const& treeParams,
66 ::std::vector<::BlockPos> const& attachmentPositions
67 ) const;
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCAPI static void** $vftable();
74 // NOLINTEND
75};
Definition BlockPos.h:18
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition MegaTreeCanopy.h:17
Definition Random.h:16
Definition RenderParams.h:30
Definition TreeParams.h:14
Definition Alias.h:14