diff options
author | Aidan Ross <aross02@fairport.org> | 2023-05-30 08:13:47 -0400 |
---|---|---|
committer | Aidan Ross <aross02@fairport.org> | 2023-05-30 08:13:47 -0400 |
commit | 0072477c3b18edefae34e0b634436aeecb625b10 (patch) | |
tree | de5c87d1d17cba40e1a1207de53be6c2a09f1273 /src/gameplay/Timer.java | |
parent | eb1b728e3d8e7fd6a1b535ecc97928b23f81b00d (diff) | |
download | NPEhero-0072477c3b18edefae34e0b634436aeecb625b10.tar.gz NPEhero-0072477c3b18edefae34e0b634436aeecb625b10.tar.bz2 NPEhero-0072477c3b18edefae34e0b634436aeecb625b10.zip |
Early syncing tests with placeholder hit sounds and miss sounds
Diffstat (limited to 'src/gameplay/Timer.java')
-rw-r--r-- | src/gameplay/Timer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gameplay/Timer.java b/src/gameplay/Timer.java index 1de576b..4ffb1fb 100644 --- a/src/gameplay/Timer.java +++ b/src/gameplay/Timer.java @@ -8,9 +8,9 @@ package gameplay; public class Timer { private long timeStart = System.currentTimeMillis(); - private int bpm; + private double bpm; - public Timer(int newBpm) { + public Timer(double newBpm) { bpm = newBpm; } |