Implemented background music

This commit is contained in:
Bokros Bálint
2016-05-14 00:14:49 +02:00
parent a17de768eb
commit c75c277403
3 changed files with 25 additions and 0 deletions

View File

@ -74,6 +74,8 @@ public class Game {
display.addVisual(new PlayerDrawer(jaffa));
display.addVisual(new PlayerBaseDrawer(replicator));
display.startMusic();
flowoftime = new FlowOfTime();
flowoftime.start(dungeon.getTimeLimit());
}
@ -101,6 +103,8 @@ public class Game {
Application.frameInstance.backToMapSelection();
break;
}
display.stopMusic();
}
public void moveONeill(Direction direction) {