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 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI ::std::optional<::BlockPos> $placeCanopy(
60 ::IBlockWorldGenAPI& target,
61 ::BlockPos const& pos,
62 ::Random& random,
63 ::RenderParams& renderParams,
64 ::TreeHelper::TreeParams const& treeParams,
65 ::std::vector<::BlockPos> const& attachmentPositions
66 ) const;
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BlockPos.h:18
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition Random.h:16
Definition RenderParams.h:30
Definition SpruceTreeCanopy.h:17
Definition TreeParams.h:14
Definition Alias.h:14