File size: 223 Bytes
d46f4a3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package net.minecraft.gametest.framework;

import java.util.stream.Stream;
import net.minecraft.core.BlockPos;

@FunctionalInterface
public interface StructureBlockPosFinder {
    Stream<BlockPos> findStructureBlockPos();
}