33 lines
No EOL
605 B
Java
33 lines
No EOL
605 B
Java
package mffs.api;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
/**
|
|
* Also extends IDisableable, IFortronFrequency
|
|
*
|
|
* @author Calclavia
|
|
*
|
|
*/
|
|
public abstract interface IProjector extends IInventory, IBiometricIdentifierLink, IFieldInteraction
|
|
{
|
|
/**
|
|
* Projects a force field.
|
|
*/
|
|
public void projectField();
|
|
|
|
/**
|
|
* Destroys a force field.
|
|
*/
|
|
public void destroyField();
|
|
|
|
/**
|
|
* @return The speed in which a force field is constructed.
|
|
*/
|
|
public int getProjectionSpeed();
|
|
|
|
/**
|
|
* * @return The amount of ticks this projector has existed in the world.
|
|
*/
|
|
public long getTicks();
|
|
|
|
} |