LeviLamina
Loading...
Searching...
No Matches
SpatialQueryUtility.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8class Block;
9class BlockPos;
11// clang-format on
12
14public:
15 // static functions
16 // NOLINTBEGIN
17 MCAPI static bool forEachBlockInAABB(
18 ::IConstBlockSource const& region,
19 ::AABB const& aabb,
20 float grow,
21 ::std::function<void(::Block const&, ::BlockPos const&)> const& callback
22 );
23 // NOLINTEND
24};
Definition AABB.h:16
Definition BlockPos.h:18
Definition Block.h:36
Definition IConstBlockSource.h:24
Definition SpatialQueryUtility.h:13