aboutsummaryrefslogtreecommitdiff
path: root/NoteInfo.java
diff options
context:
space:
mode:
authorTyler Ferrari <tpoke.ferrari@gmail.com>2023-05-09 12:30:00 +0000
committerTyler Ferrari <tpoke.ferrari@gmail.com>2023-05-09 12:30:00 +0000
commit4c67291aee90d1e42c51400d544882bcda8e1a18 (patch)
tree7c73dea889f415e055284d78b832d9ccfc8b5cc5 /NoteInfo.java
parent107ef4c16d8007559a4de7c68f590df92f8f415f (diff)
downloadNPEhero-4c67291aee90d1e42c51400d544882bcda8e1a18.tar.gz
NPEhero-4c67291aee90d1e42c51400d544882bcda8e1a18.tar.bz2
NPEhero-4c67291aee90d1e42c51400d544882bcda8e1a18.zip
Move files
Diffstat (limited to 'NoteInfo.java')
-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;
- }
-}