Implemented all csf handling

This commit is contained in:
2015-05-28 23:11:35 +02:00
parent 9ba62993e8
commit c2674ae382
11 changed files with 258 additions and 44 deletions
+4
View File
@@ -15,11 +15,15 @@ public class GameModel implements ActionListener{
private Timer update;
public static Color[] colors = {Color.MAGENTA,Color.RED,Color.GREEN,Color.YELLOW,Color.CYAN,Color.WHITE};
private GameStateManager gsm;
private SongHandler sh;
public GameModel(GameStateManager gsm)
{
this.gsm = gsm;
sh = new SongHandler();
update = new Timer(1000/30, this);
update.start();