add drawable interface

This commit is contained in:
Sem van der Hoeven
2020-05-15 19:12:46 +02:00
parent 9b893a4294
commit 4854902bbf
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package netwerkprog.game.client;
public class Map {
}

View File

@@ -0,0 +1,5 @@
package netwerkprog.game.util;
public interface Drawable extends Updatable {
void render();
}