blob: f61afd81d31239120087065706b84e7d18cd897f [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.railcraft.info>
*/
public interface IPairEffectRenderer {
public boolean isTuningAuraActive();
public void tuningEffect(TileEntity start, TileEntity dest);
}