aboutsummaryrefslogtreecommitdiff
path: root/src/fallTest/NoteInfo.java
diff options
context:
space:
mode:
authorAidan Ross <aross02@fairport.org>2023-05-25 08:19:48 -0400
committerAidan Ross <aross02@fairport.org>2023-05-25 08:19:48 -0400
commitf9748632b8bc33a3b91cad1392aac23c6fe47ac1 (patch)
tree849a6f4820620ff5c3f9df3ba1f81876f9fc88bd /src/fallTest/NoteInfo.java
parent9c7aa6cab36884d4dda8b3dbf50791f2e2d810d2 (diff)
downloadNPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.tar.gz
NPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.tar.bz2
NPEhero-f9748632b8bc33a3b91cad1392aac23c6fe47ac1.zip
Renamed everything to be better and fixed arches on SongPlayer
Diffstat (limited to 'src/fallTest/NoteInfo.java')
-rw-r--r--src/fallTest/NoteInfo.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/fallTest/NoteInfo.java b/src/fallTest/NoteInfo.java
deleted file mode 100644
index 6a9c759..0000000
--- a/src/fallTest/NoteInfo.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*Name: Guitar Hero Project
- *Description: Contains the info for when to send a note
- */
-package fallTest;
-
-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;
- }
-}