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