aboutsummaryrefslogtreecommitdiff
path: root/NoteInfo.java
diff options
context:
space:
mode:
authortferrari25 <tferrari25@HS-234-21.fcsd.monroe.edu>2023-05-10 23:26:13 -0400
committertferrari25 <tferrari25@HS-234-21.fcsd.monroe.edu>2023-05-10 23:26:13 -0400
commitfae5cc1d77590caff6f9c1f2abfbe0a90e3d2173 (patch)
treec4e88e5399143829074c5484268bcbc0c396938c /NoteInfo.java
parent49bcaaabbc4996ff790e4253bad9deadf3ffe42b (diff)
downloadNPEhero-fae5cc1d77590caff6f9c1f2abfbe0a90e3d2173.tar.gz
NPEhero-fae5cc1d77590caff6f9c1f2abfbe0a90e3d2173.tar.bz2
NPEhero-fae5cc1d77590caff6f9c1f2abfbe0a90e3d2173.zip
Downgrade to JavaFX 15.0.1 and add Windows configs
Diffstat (limited to '')
-rw-r--r--NoteInfo.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/NoteInfo.java b/NoteInfo.java
deleted file mode 100644
index 538b31b..0000000
--- a/NoteInfo.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/*Name: Guitar Hero Project
- *Description: Contains the info for when to send a note
- */
-package cs;
-
-
-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;
- }
-}