added Timer class

This commit is contained in:
Sem van der Hoeven
2020-05-14 19:59:35 +02:00
parent c78f8f6bd6
commit aaba65a9a1
2 changed files with 105 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
package netwerkprog.game.util;
public interface Updatable {
void update(double deltaTime);
}