aboutsummaryrefslogtreecommitdiff
path: root/src/gameplay
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-06-02 01:36:34 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-06-02 01:36:34 -0400
commit571bab88c599571ee5bd9c6f5f8af2f3016fb19d (patch)
treec8e96fa99ce1dddaae68fb60c27ddcf990c87a0a /src/gameplay
parent0b7f45fcb05814870733613dcff233451948c967 (diff)
downloadNPEhero-571bab88c599571ee5bd9c6f5f8af2f3016fb19d.tar.gz
NPEhero-571bab88c599571ee5bd9c6f5f8af2f3016fb19d.tar.bz2
NPEhero-571bab88c599571ee5bd9c6f5f8af2f3016fb19d.zip
bpm is now a double
Diffstat (limited to 'src/gameplay')
-rw-r--r--src/gameplay/SongPlayer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gameplay/SongPlayer.java b/src/gameplay/SongPlayer.java
index 8745727..78d3a9f 100644
--- a/src/gameplay/SongPlayer.java
+++ b/src/gameplay/SongPlayer.java
@@ -41,7 +41,7 @@ import sound.AudioFilePlayer;
public class SongPlayer extends Pane {
- private int bpm; //initializes the bpm of the song, to be read in from a metadata file later
+ private Double bpm; //initializes the bpm of the song, to be read in from a metadata file later
private int songLength; //initializes the length of the song in terms of the song's bpm, to be read in later
AudioFilePlayer music;