diff options
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; } |