LeviLamina
Loading...
Searching...
No Matches
BlockUtils.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
9class BlockType;
10// clang-format on
11
12namespace BlockUtils {
13// functions
14// NOLINTBEGIN
15MCAPI bool allowsNetherVegetation(::BlockType const& block);
16
17MCAPI float getLiquidBlockHeight(::Block const& block, ::BlockPos const& blockPos);
18
19MCAPI bool isFullFlowingLiquid(::Block const& block);
20
21MCAPI bool isLiquidSource(::Block const& block);
22
23MCAPI bool isWaterSource(::Block const& block);
24// NOLINTEND
25
26} // namespace BlockUtils
Definition BlockPos.h:17
Definition BlockType.h:84
Definition Block.h:37