electrodynamics/src/main/scala/resonantinduction/atomic/gate/IQuantumGate.java

14 lines
258 B
Java
Raw Normal View History

2014-07-14 20:46:49 +02:00
package resonantinduction.atomic.gate;
2014-03-09 20:40:57 +01:00
import resonant.api.blocks.IBlockFrequency;
2014-03-09 20:40:57 +01:00
/**
* Only TileEntities should implement this.
2014-09-07 05:50:03 +02:00
*
2014-03-09 20:40:57 +01:00
* @author Calclavia
*/
2014-07-29 21:47:22 +02:00
public interface IQuantumGate extends IBlockFrequency
2014-03-09 20:40:57 +01:00
{
2014-07-29 21:47:22 +02:00
public void transport(Object object);
2014-03-09 20:40:57 +01:00
}