First Commit

This commit is contained in:
2015-05-03 19:30:17 +02:00
parent dca9fe2c0c
commit e3a1ad7866
7 changed files with 155 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package model;
import view.GameView;
public class GameModel {
GameView view;
public GameModel(GameView view)
{
this.view = view;
}
}