package sig; import java.util.List; public class BlockClump { List blocks; public BlockClump(List blockList) { this.blocks = blockList; } }