From fae5cc1d77590caff6f9c1f2abfbe0a90e3d2173 Mon Sep 17 00:00:00 2001 From: tferrari25 Date: Wed, 10 May 2023 23:26:13 -0400 Subject: Downgrade to JavaFX 15.0.1 and add Windows configs --- NoteInfo.java | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 NoteInfo.java (limited to 'NoteInfo.java') 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; - } -} -- cgit v1.2.3