aboutsummaryrefslogtreecommitdiff
path: root/Timer.java
blob: 97070527517620c44466928ecba760c88aaf351c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*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 cs;


public class Timer
{
    private long timeStart = System.currentTimeMillis();
    
    public int time() {
        return (int)(System.currentTimeMillis()-timeStart);
    }
}