Strip all Phase references, TODO/FUTURE roadmap notes, and internal planning comments from the codebase. Run Prettier for consistent formatting across all Java files.
17 lines
476 B
Java
17 lines
476 B
Java
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
|
|
}
|