Files
TiedUp-/src/main/java/com/tiedup/remake/blocks/ICanBeLoaded.java
NotEvil a71093ba9c Remove internal phase comments and format code
Strip all Phase references, TODO/FUTURE roadmap notes, and internal
planning comments from the codebase. Run Prettier for consistent
formatting across all Java files.
2026-04-12 01:25:55 +02:00

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
}