mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-21 21:42:28 +00:00
14 lines
310 B
Java
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();
|
|
}
|