Removed bad libraries, added LWJGL and Slick-Util, added

mightypork.utils, some work on the framework.
This commit is contained in:
Ondřej Hruška
2014-03-28 20:31:27 +01:00
parent 3578c0ab17
commit 6b8891666a
126 changed files with 14247 additions and 75 deletions
+23
View File
@@ -0,0 +1,23 @@
package mightypork.utils.time;
public interface Pauseable {
/**
* Pause operation
*/
public void pause();
/**
* Resume operation
*/
public void resume();
/**
* @return paused state
*/
public boolean isPaused();
}