9 lines
203 B
Java
9 lines
203 B
Java
|
package net.minecraft.gametest.framework;
|
||
|
|
||
|
import java.util.stream.Stream;
|
||
|
import net.minecraft.core.BlockPos;
|
||
|
|
||
|
@FunctionalInterface
|
||
|
public interface TestPosFinder {
|
||
|
Stream<BlockPos> findTestPos();
|
||
|
}
|