e5a6eadc45
This patch provides common/mekanism/*.java with standardized indentation (tabs) and also removes trailing whitespace.
11 lines
227 B
Java
11 lines
227 B
Java
package mekanism.api.transmitters;
|
|
|
|
public interface ITransmitter
|
|
{
|
|
/**
|
|
* Get the transmitter's transmission type
|
|
*
|
|
* @return TransmissionType this transmitter uses
|
|
*/
|
|
public TransmissionType getTransmissionType();
|
|
}
|