aboutsummaryrefslogtreecommitdiff
path: root/src/fallTest/Timer.java
blob: 2ad7efeeb55ea5bcc927904bcc7057e3f7470730 (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 fallTest;


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