minecraft-src/net/minecraft/gametest/framework/StructureBlockPosFinder.java
2025-07-04 01:41:11 +03:00

9 lines
221 B
Java

package net.minecraft.gametest.framework;
import java.util.stream.Stream;
import net.minecraft.core.BlockPos;
@FunctionalInterface
public interface StructureBlockPosFinder {
Stream<BlockPos> findStructureBlockPos();
}