aboutsummaryrefslogtreecommitdiff
path: root/src/main/Level.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Level.java')
-rw-r--r--src/main/Level.java25
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
+}