struktur geändert

This commit is contained in:
toksikk
2014-10-31 10:15:21 +01:00
parent 8565e5fd97
commit fe2a8bfe8f
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,15 @@
package mapEngine;
import java.io.IOException;
import prp.GameInterface;
public class MapEngineTest {
public static void main(String[] args) throws IOException {
MapEngine me = new MapEngine();
GameInterface gi = new GameInterface();
me.addAllGameTilesToPanel(gi.getGamePanel());
}
}
@@ -0,0 +1 @@