2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.api.transmitters;
|
2013-08-18 22:51:47 +02:00
|
|
|
|
2013-12-21 01:12:33 +01:00
|
|
|
public interface ITransmitter
|
2013-08-18 22:51:47 +02:00
|
|
|
{
|
|
|
|
/**
|
2013-08-21 21:26:47 +02:00
|
|
|
* Get the transmitter's transmission type
|
|
|
|
*
|
|
|
|
* @return TransmissionType this transmitter uses
|
|
|
|
*/
|
|
|
|
public TransmissionType getTransmissionType();
|
2013-08-18 22:51:47 +02:00
|
|
|
}
|