Code/net/minecraft/gametest/framework/TestPosFinder.java

9 lines
203 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.gametest.framework;
import java.util.stream.Stream;
import net.minecraft.core.BlockPos;
@FunctionalInterface
public interface TestPosFinder {
Stream<BlockPos> findTestPos();
}