package net.shadowfacts.simplemultipart.container; import net.minecraft.block.BlockState; import net.shadowfacts.simplemultipart.multipart.MultipartView; import java.util.Set; /** * @author shadowfacts */ public class ContainerBlockState extends BlockState { private Set parts; public ContainerBlockState(BlockState delegate, Set parts) { super(delegate.getBlock(), delegate.getEntries()); this.parts = parts; } public Set getParts() { return parts; } }