blob: 52047fda67685adc6d6b76020499e4f8855771ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
|