7 lines
219 B
Haxe
7 lines
219 B
Haxe
package cc.periphs;
|
|
|
|
extern class EnergyStorage {
|
|
public function getEnergy():Int; // Get the energy of this block.
|
|
public function getEnergyCapacity():Int; // Get the maximum amount of energy this block can store.
|
|
}
|