diff options
author | Aidan Ross <aross02@fairport.org> | 2023-05-25 08:19:48 -0400 |
---|---|---|
committer | Aidan Ross <aross02@fairport.org> | 2023-05-25 08:19:48 -0400 |
commit | f9748632b8bc33a3b91cad1392aac23c6fe47ac1 (patch) | |
tree | 849a6f4820620ff5c3f9df3ba1f81876f9fc88bd /src/GamePlay/Timer.java | |
parent | 9c7aa6cab36884d4dda8b3dbf50791f2e2d810d2 (diff) | |
download | NPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.tar.gz NPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.tar.bz2 NPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.zip |
Renamed everything to be better and fixed arches on SongPlayer
Diffstat (limited to 'src/GamePlay/Timer.java')
-rw-r--r-- | src/GamePlay/Timer.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/GamePlay/Timer.java b/src/GamePlay/Timer.java new file mode 100644 index 0000000..5d1ddae --- /dev/null +++ b/src/GamePlay/Timer.java @@ -0,0 +1,24 @@ +/*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 int bpm; + + public Timer(int newBpm) { + bpm = newBpm; + } + + public Timer() { + bpm = 60000; + } + + public double time() { + return ((double)(System.currentTimeMillis()-timeStart))*(bpm/60000.0); + } +} |