From 7c106e7dda744e7d3782737262601de693db0dca Mon Sep 17 00:00:00 2001 From: sowgro Date: Fri, 19 May 2023 01:15:47 -0400 Subject: - overhaul css (not done) - rewrite driver - add difficulty buttons - remove placeholders (not done) --- src/main/Level.java | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/main/Level.java') diff --git a/src/main/Level.java b/src/main/Level.java index 52047fd..71560d2 100644 --- a/src/main/Level.java +++ b/src/main/Level.java @@ -8,18 +8,22 @@ import javafx.scene.paint.Color; public class Level { - private Color[] colors; - private Image background; - private Image preview; - private String text; - private String desc; - //private ArrayList(); + public Image preview; + public String title; + public String aritst; + public String desc; + public ArrayList diffList = new ArrayList(); + + public Image background; + public Color[] colors; - //google "varargs" to see how this works public void setColors(Color... newColors) { colors = newColors; } - //INCOMPLETE + public String toString() + { + return title+" - "+aritst; + } } -- cgit v1.2.3