9 lines
221 B
Java
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();
|
|
}
|