aboutsummaryrefslogtreecommitdiff
path: root/src/gameplay/Timer.java
diff options
context:
space:
mode:
authorAidan Ross <aross02@fairport.org>2023-05-30 08:13:47 -0400
committerAidan Ross <aross02@fairport.org>2023-05-30 08:13:47 -0400
commit0072477c3b18edefae34e0b634436aeecb625b10 (patch)
treede5c87d1d17cba40e1a1207de53be6c2a09f1273 /src/gameplay/Timer.java
parenteb1b728e3d8e7fd6a1b535ecc97928b23f81b00d (diff)
downloadNPEhero-0072477c3b18edefae34e0b634436aeecb625b10.tar.gz
NPEhero-0072477c3b18edefae34e0b634436aeecb625b10.tar.bz2
NPEhero-0072477c3b18edefae34e0b634436aeecb625b10.zip
Early syncing tests with placeholder hit sounds and miss sounds
Diffstat (limited to '')
-rw-r--r--src/gameplay/Timer.java4
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;
}