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