16 lines
323 B
Java
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);
|
|
}
|