aboutsummaryrefslogtreecommitdiff
path: root/src/fallTest/NoteInfo.java
blob: 77b9a209c23d33a0ec7bcad82352df411098bb2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*Name:	Guitar Hero Project
 *Description: Contains the info for when to send a note
 */
package fallTest;


public class NoteInfo
{
    private int sendTime;
    
    public NoteInfo(int t) {
        sendTime = t;
    }
    
    public int getTime() {
        return sendTime;
    }
    
    public int compareTo(NoteInfo other) {
        return sendTime - other.sendTime;
    }
}