aboutsummaryrefslogtreecommitdiff
path: root/src/main/NoteTest.java
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-05-14 17:34:40 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-05-14 17:34:40 -0400
commit4a1f4a98116b5c59efe0606375b833a722a0d281 (patch)
treef993765d0022da440199fb109633b0e0113082eb /src/main/NoteTest.java
parent6e2ff44c33226e6d03810ae5fae9645605d3e89d (diff)
downloadNPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.tar.gz
NPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.tar.bz2
NPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.zip
add levelselector gui, move some files around
Diffstat (limited to 'src/main/NoteTest.java')
-rw-r--r--src/main/NoteTest.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/main/NoteTest.java b/src/main/NoteTest.java
deleted file mode 100644
index 34d9c8c..0000000
--- a/src/main/NoteTest.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*Name:
- *Date:
- *Period:
- *Teacher:
- *Description:
- */
-package main;
-import java.awt.*;
-
-public class NoteTest
-{
- private boolean failed = false;
- private int lane;
- private final int NOTESPEED = 1;
- private int yPos = SongPlayer.HEIGHT;
-
- public void gameTick() {
- if (!failed) {
- if (yPos > 0) {
- yPos -= NOTESPEED;
- }
- else {
- failed = true;
- }
- }
- }
-
- public boolean getFailed() {
- return failed;
- }
-
- public int getY() {
- return yPos;
- }
-}