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