diff options
Diffstat (limited to 'src/main/java/net/sowgro/npehero/gameplay/NoteInfo.java')
-rwxr-xr-x | src/main/java/net/sowgro/npehero/gameplay/NoteInfo.java | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/main/java/net/sowgro/npehero/gameplay/NoteInfo.java b/src/main/java/net/sowgro/npehero/gameplay/NoteInfo.java deleted file mode 100755 index a34e939..0000000 --- a/src/main/java/net/sowgro/npehero/gameplay/NoteInfo.java +++ /dev/null @@ -1,28 +0,0 @@ -/*Name: Guitar Hero Project - *Description: Contains the info for when to send a note - */ -package net.sowgro.npehero.gameplay; - -import javafx.scene.paint.Color; - -public class NoteInfo -{ - private double sendTime; - private Color col; - - public NoteInfo(double t) { - sendTime = t; - } - - public double getTime() { - return sendTime; - } - - public Color getColor() { - return col; - } - - public double compareTo(NoteInfo other) { - return sendTime - other.sendTime; - } -} |