Code cleanup and some improvements

This commit is contained in:
jancoow
2015-05-28 12:25:42 +02:00
parent fab4ac6ce7
commit ea6895c6c1
6 changed files with 49 additions and 66 deletions
+3 -3
View File
@@ -12,10 +12,10 @@ import control.button.ButtonHandler;
public class GameModel implements ActionListener{
GameView view;
Timer update;
private GameView view;
private Timer update;
public static Color[] colors = {Color.MAGENTA,Color.RED,Color.GREEN,Color.YELLOW,Color.CYAN,Color.BLUE};
GameStateManager gsm;
private GameStateManager gsm;
public GameModel(GameView view,GameStateManager gsm)
{