diff options
author | Aidan Ross <aross02@fairport.org> | 2023-05-28 21:05:30 -0400 |
---|---|---|
committer | Aidan Ross <aross02@fairport.org> | 2023-05-28 21:05:30 -0400 |
commit | 92f0e69cc938a058805e41780cb8a1bc7e6abda1 (patch) | |
tree | 1efe8b46e4db7d4bc9a4d112f310ffe3f0d79768 /src/gameplay/NoteField.java | |
parent | 9d07f0eb68e7779e8868b18a51bee5f8eb23b31e (diff) | |
download | NPEhero-92f0e69cc938a058805e41780cb8a1bc7e6abda1.tar.gz NPEhero-92f0e69cc938a058805e41780cb8a1bc7e6abda1.tar.bz2 NPEhero-92f0e69cc938a058805e41780cb8a1bc7e6abda1.zip |
Removed unnecesary files in the gameplay class, as well as merged gameplay.score with main.scoreController such that score and combo are now displayed properly on the screen
Diffstat (limited to 'src/gameplay/NoteField.java')
-rw-r--r-- | src/gameplay/NoteField.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/gameplay/NoteField.java b/src/gameplay/NoteField.java deleted file mode 100644 index a954a2c..0000000 --- a/src/gameplay/NoteField.java +++ /dev/null @@ -1,25 +0,0 @@ -/*Name: Guitar Hero Project - *Description: Contains the information for a single note on the field - */ -package gameplay; - -import javafx.animation.TranslateTransition; - -public class NoteField -{ - private Block note; - private TranslateTransition anim; - - public NoteField(Block newNote, TranslateTransition newAnim) { - note = newNote; - anim = newAnim; - } - - public Block getNote() { - return note; - } - - public TranslateTransition getAnim() { - return anim; - } -} |