blob: 3588a82c9bdba36c44f7ef6be256e0fa02edaa3e [file] [log] [blame] [raw]
package net.darkhax.tesla.api;
public interface ITeslaHolder {
/**
* Gets the amount of Tesla power stored being stored.
*
* @return The amount of Tesla power being stored.
*/
long getStoredPower ();
/**
* Gets the maximum amount of Tesla power that can be held.
*
* @return The maximum amount of Tesla power that can be held.
*/
long getCapacity ();
}