cleanup, util packages reorganized, removed some sysouts
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package mightypork.util.timing;
|
||||
|
||||
|
||||
/**
|
||||
* Uses delta timing
|
||||
*
|
||||
* @author MightyPork
|
||||
*/
|
||||
public interface Updateable {
|
||||
|
||||
/**
|
||||
* Update item state based on elapsed time
|
||||
*
|
||||
* @param delta time elapsed since last update, in seconds
|
||||
*/
|
||||
public void update(double delta);
|
||||
}
|
||||
Reference in New Issue
Block a user