2021-06-04 15:21:33 +02:00

14 lines
310 B
Java

package api.hbm.energy;
/**
* For machines and things that have an energy buffer and are affected by EMPs
* @author hbm
*/
public interface IEnergyUser extends IEnergyConnector {
/**
* Not to be used for actual energy transfer, rather special external things like EMPs
*/
public void setPower();
}