resonant-induction/APIs/icbm/api/IHackable.java
2013-07-22 18:24:55 -04:00

16 lines
323 B
Java

package icbm.api;
import net.minecraft.entity.player.EntityPlayer;
public interface IHackable
{
/**
* Causes the machine to generate a new pass key
*/
public void generateNewKey();
/**
* Checks to see if the pass key matches the stored one
*/
public boolean tryForAccess(EntityPlayer player, String pass);
}