aboutsummaryrefslogtreecommitdiff
path: root/src/main/Difficulty.java
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-06-02 01:31:49 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-06-02 01:31:49 -0400
commit0b7f45fcb05814870733613dcff233451948c967 (patch)
treea18044aa13d3374d39177332b57a822f32c60843 /src/main/Difficulty.java
parent4e43d6f020d908ccd9b8a6b77803cac943da00ed (diff)
downloadNPEhero-0b7f45fcb05814870733613dcff233451948c967.tar.gz
NPEhero-0b7f45fcb05814870733613dcff233451948c967.tar.bz2
NPEhero-0b7f45fcb05814870733613dcff233451948c967.zip
start note editor, new test level
Diffstat (limited to 'src/main/Difficulty.java')
-rw-r--r--src/main/Difficulty.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/Difficulty.java b/src/main/Difficulty.java
index 18dabb3..c7a289a 100644
--- a/src/main/Difficulty.java
+++ b/src/main/Difficulty.java
@@ -19,14 +19,16 @@ public class Difficulty
public File notes;
public int bpm;
public int numBeats;
+ public Level level;
/**
* Creates a new Difficulty and gives it a file path
* @param newDir: The file path of the Difficulty
*/
- public Difficulty(File newDir)
+ public Difficulty(File newDir, Level level)
{
thisDir = newDir;
+ this.level = level;
}
/**