resonant-induction/APIs/icbm/api/IHackable.java

17 lines
323 B
Java
Raw Normal View History

package icbm.api;
import net.minecraft.entity.player.EntityPlayer;
2013-07-23 00:24:55 +02:00
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);
}