From ee2229339429d50afa33e2f8b9c0ee0939766290 Mon Sep 17 00:00:00 2001 From: sowgro Date: Mon, 8 Jul 2024 02:41:31 -0400 Subject: Change project structure, embed resources into jar and remove libraries from source control --- src/gameplay/NoteInfo.java | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/gameplay/NoteInfo.java (limited to 'src/gameplay/NoteInfo.java') diff --git a/src/gameplay/NoteInfo.java b/src/gameplay/NoteInfo.java deleted file mode 100644 index 6428066..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; - } -} -- cgit v1.2.3