diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-14 17:34:40 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-14 17:34:40 -0400 |
commit | 4a1f4a98116b5c59efe0606375b833a722a0d281 (patch) | |
tree | f993765d0022da440199fb109633b0e0113082eb /src/main/Level.java | |
parent | 6e2ff44c33226e6d03810ae5fae9645605d3e89d (diff) | |
download | NPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.tar.gz NPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.tar.bz2 NPEhero-4a1f4a98116b5c59efe0606375b833a722a0d281.zip |
add levelselector gui, move some files around
Diffstat (limited to 'src/main/Level.java')
-rw-r--r-- | src/main/Level.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/Level.java b/src/main/Level.java new file mode 100644 index 0000000..52047fd --- /dev/null +++ b/src/main/Level.java @@ -0,0 +1,25 @@ +package main; + +import java.io.File; +import java.util.ArrayList; + +import javafx.scene.image.Image; +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<String>(); + + //google "varargs" to see how this works + public void setColors(Color... newColors) + { + colors = newColors; + } + + //INCOMPLETE +} |