diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-30 08:27:14 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-30 08:27:14 -0400 |
commit | ed2ef7684446ead49db1e37ff7ab0e7066685673 (patch) | |
tree | 608ff7d971e01e6477923ece1850702eba717847 /src/gameplay | |
parent | 0072477c3b18edefae34e0b634436aeecb625b10 (diff) | |
download | NPEhero-ed2ef7684446ead49db1e37ff7ab0e7066685673.tar.gz NPEhero-ed2ef7684446ead49db1e37ff7ab0e7066685673.tar.bz2 NPEhero-ed2ef7684446ead49db1e37ff7ab0e7066685673.zip |
add comment about game over screen
Diffstat (limited to 'src/gameplay')
-rw-r--r-- | src/gameplay/SongPlayer.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gameplay/SongPlayer.java b/src/gameplay/SongPlayer.java index 9193210..67b21a4 100644 --- a/src/gameplay/SongPlayer.java +++ b/src/gameplay/SongPlayer.java @@ -7,6 +7,7 @@ import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; +import gui.GameOver; import javafx.geometry.Pos; import javafx.scene.input.KeyCode; import javafx.scene.layout.HBox; @@ -29,6 +30,7 @@ import sound.AudioFilePlayer; // lvl.colors - array of colors (size 5) for the block colors // d.notes - File, notes.txt in the difficulty folder +// gui.Driver.setMenu(new GameOver(lvl, d, p, cntrl.getScore())); public class SongPlayer extends Pane { private int bpm; //initializes the bpm of the song, to be read in from a metadata file later |