blob: 379b8fd79c788b42284524bbe4625feb21e57b12 [file] [log] [blame] [raw]
package cofh.api.tileentity;
import java.util.List;
import net.minecraft.entity.player.EntityPlayer;
/**
* Implement this interface on Tile Entities which can send state information through chat.
*
* @author Zeldo Kavira
*
*/
public interface ITileInfo {
public List<String> getTileInfo();
public void sendTileInfoToPlayer(EntityPlayer player);
}