aboutsummaryrefslogtreecommitdiff
path: root/src/main/Level.java
blob: 71560d281f20b1899f43416cbdde494772faa9e6 (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
26
27
28
29
package main;

import java.io.File;
import java.util.ArrayList;

import javafx.scene.image.Image;
import javafx.scene.paint.Color;

public class Level 
{
    public Image preview;
    public String title;
    public String aritst;
    public String desc;
    public ArrayList<String> diffList = new ArrayList<String>();

    public Image background;
    public Color[] colors;

    public void setColors(Color... newColors)
    {
        colors = newColors;
    }

    public String toString()
    {
        return title+" - "+aritst;
    }
}