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 // vIndex: 0
19 virtual ~ITreeRoot() = default;
20
21 // vIndex: 1
22 virtual ::std::optional<::BlockPos> placeRoots(
24 ::BlockPos const&,
25 ::Random&,
26 int,
29 ) const = 0;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
Definition BlockPos.h:18
Definition IBlockWorldGenAPI.h:25
Definition ITreeRoot.h:14
Definition Random.h:11
Definition RenderParams.h:30
Definition TreeParams.h:14