blob: 61ea55e8659309dff20518b77bef4c4b4f2a585e [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.world.World;
/**
*
* @author CovertJaguar <http://www.railcraft.info>
*/
public interface IReceiverTile {
public World getWorld();
public SignalReceiver getReceiver();
public void onControllerAspectChange(SignalController con, SignalAspect aspect);
}