Mekanism-tilera-Edition/common/ic2/api/energy/EnergyNet.java

19 lines
482 B
Java
Raw Normal View History

2013-04-13 16:35:13 +02:00
package ic2.api.energy;
/**
* Provides access to the energy network.
*
* The old EnergyNet methods missing in IEnergyNet have been migrated to events (load, unload) or
* removed (tiles no longer emit energy actively, the energy net implementation requests it).
*
* See ic2/api/energy/usage.txt for an overall description of the energy net api.
2013-04-13 16:35:13 +02:00
*/
public final class EnergyNet {
/**
* Instance of the global EnergyNet class.
2013-04-13 16:35:13 +02:00
*/
public static IEnergyNet instance;
2013-04-13 16:35:13 +02:00
}