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