aboutsummaryrefslogtreecommitdiff
path: root/src/GamePlay/NoteInfo.java
diff options
context:
space:
mode:
authorAidan Ross <aross02@fairport.org>2023-05-25 10:27:55 -0400
committerAidan Ross <aross02@fairport.org>2023-05-25 10:27:55 -0400
commit414d5128c379916a50a015210e6d7caced1825f5 (patch)
treeec0db6e4c2dfa9067ea330b4bdbfeafda94f0851 /src/GamePlay/NoteInfo.java
parent389520ddc5064c21dcb0e9317366078ce1c88b65 (diff)
parent1d0890cf11f88e274beddf9fbc132fb80c2f054c (diff)
downloadNPEhero-414d5128c379916a50a015210e6d7caced1825f5.tar.gz
NPEhero-414d5128c379916a50a015210e6d7caced1825f5.tar.bz2
NPEhero-414d5128c379916a50a015210e6d7caced1825f5.zip
Merge branch 'main' of https://gitlab.sowgro.net/guitarheros/guitarhero
Diffstat (limited to 'src/GamePlay/NoteInfo.java')
-rw-r--r--src/GamePlay/NoteInfo.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/GamePlay/NoteInfo.java b/src/GamePlay/NoteInfo.java
deleted file mode 100644
index f6b1018..0000000
--- a/src/GamePlay/NoteInfo.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*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;
- }
-}