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 BlockLegacy;
9class BlockPos;
10// clang-format on
11
12namespace BlockUtils {
13// functions
14// NOLINTBEGIN
15MCAPI bool allowsNetherVegetation(::BlockLegacy const& block);
16
17MCAPI float getLiquidBlockHeight(::Block const& block, ::BlockPos const& blockPos);
18
19MCAPI bool isDownwardFlowingLiquid(::Block const& block);
20
21MCAPI bool isFullFlowingLiquid(::Block const& block);
22
23MCAPI bool isLiquidSource(::Block const& block);
24// NOLINTEND
25
26} // namespace BlockUtils
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition Block.h:36