aboutsummaryrefslogtreecommitdiff
path: root/src/GamePlay/NoteInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/GamePlay/NoteInfo.java')
-rw-r--r--src/GamePlay/NoteInfo.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/GamePlay/NoteInfo.java b/src/GamePlay/NoteInfo.java
new file mode 100644
index 0000000..f6b1018
--- /dev/null
+++ b/src/GamePlay/NoteInfo.java
@@ -0,0 +1,28 @@
+/*Name: Guitar Hero Project
+ *Description: Contains the info for when to send a note
+ */
+package 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;
+ }
+}