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

16 lines
323 B
Java
Raw Normal View History

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);
}