From 0072477c3b18edefae34e0b634436aeecb625b10 Mon Sep 17 00:00:00 2001 From: Aidan Ross Date: Tue, 30 May 2023 08:13:47 -0400 Subject: Early syncing tests with placeholder hit sounds and miss sounds --- src/gameplay/Timer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gameplay/Timer.java') 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; } -- cgit v1.2.3