LeviLamina
Loading...
Searching...
No Matches
ITreeTrunk.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
9class ITreeCanopy;
10class Random;
11class RenderParams;
12namespace TreeHelper { struct TreeParams; }
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~ITreeTrunk() = default;
20
21 virtual ::std::optional<::BlockPos> placeTrunk(
23 ::BlockPos const&,
24 ::Random&,
25 int,
28 ::ITreeCanopy const*
29 ) const = 0;
30
31 virtual int getTreeHeight(::Random&) const = 0;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
Definition BlockPos.h:19
Definition IBlockWorldGenAPI.h:25
Definition ITreeCanopy.h:14
Definition ITreeTrunk.h:15
Definition Random.h:10
Definition RenderParams.h:30
Definition TreeParams.h:14