Random interface update

This commit is contained in:
Clisprail
2014-02-20 00:21:11 +01:00
parent d236c21b18
commit 05e3b1c9d7
@@ -0,0 +1,21 @@
package org.parabot.environment.randoms;
/**
*
* @author Everel
*
*/
public interface Random {
/**
* Determines whether this random should activate
* @return <b>true</b> if this random should activate
*/
public boolean activate();
/**
* Executes this random
*/
public void execute();
}