blob: dc26305d03572638da06a345af5360bb9a98a66a (
plain)
1
2
3
4
5
6
7
8
9
|
package subconscious.graphics.widget;
/* Dynamic interface for Widgets
* If a Widget is dynamic, it is updated on every tick of the game.
*/
public interface Dynamic {
public void update(long deltaNanoTime);
}
|