18 lines
482 B
Java
18 lines
482 B
Java
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.
|
|
*/
|
|
public final class EnergyNet {
|
|
/**
|
|
* Instance of the global EnergyNet class.
|
|
*/
|
|
public static IEnergyNet instance;
|
|
}
|
|
|