blob: b936312fc32f68a2bb6499e4a1f1ec36fb9d1efe [file] [log] [blame] [raw]
/*
* This code is the property of CovertJaguar
* and may only be used with explicit written
* permission unless otherwise specified on the
* license page at railcraft.wikispaces.com.
*/
package mods.railcraft.api.signals;
import net.minecraft.tileentity.TileEntity;
/**
*
* @author CovertJaguar <http://www.ModTMechworks.info>
*/
public interface IPairEffectRenderer {
public boolean isTuningAuraActive();
public void tuningEffect(TileEntity start, TileEntity dest);
}