From ee2229339429d50afa33e2f8b9c0ee0939766290 Mon Sep 17 00:00:00 2001 From: sowgro Date: Mon, 8 Jul 2024 02:41:31 -0400 Subject: Change project structure, embed resources into jar and remove libraries from source control --- src/gameplay/Timer.java | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/gameplay/Timer.java (limited to 'src/gameplay/Timer.java') diff --git a/src/gameplay/Timer.java b/src/gameplay/Timer.java deleted file mode 100644 index 96a6c30..0000000 --- a/src/gameplay/Timer.java +++ /dev/null @@ -1,28 +0,0 @@ -/*Name: Guitar Hero Project - *Description: Contains the method used to determine how long the user has been playing, - * used to determine when to send notes - */ -package gameplay; - - -public class Timer -{ - private long timeStart = System.currentTimeMillis(); - private double bpm; - - public Timer(double newBpm) { - bpm = newBpm; - } - - public Timer() { - bpm = 60000; - } - - public double time() { - return ((double)(System.currentTimeMillis()-timeStart)-2000)*(bpm/60000.0); - } - - public String toString() { - return ""+((Math.round(10*(((double)(System.currentTimeMillis()-timeStart))*(bpm/60000.0))))/10.0); - } -} -- cgit v1.2.3