package com.tiedup.remake.blocks; /** * Marker interface for blocks that can have bondage items loaded into them. * * * Implemented by: * - BlockRopesTrap - applies items when entity walks on it * - BlockTrappedBed - applies items when player sleeps * - BlockKidnapBomb - passes items to explosion entity * * These blocks have associated BlockEntities that store the bondage items. */ public interface ICanBeLoaded { // Marker interface - no methods required }