aboutsummaryrefslogtreecommitdiff
path: root/src/main/Level.java
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-05-26 08:15:17 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-05-26 08:15:17 -0400
commit3b31a7221ad9959fe33298e2d712057a06dd11d0 (patch)
tree561ce46fbf213383fedab080588274ba4b09ff92 /src/main/Level.java
parentfcd65070900865a9e0b547c49968988abcda5ab9 (diff)
downloadNPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.tar.gz
NPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.tar.bz2
NPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.zip
add default colors to Level
Diffstat (limited to 'src/main/Level.java')
-rw-r--r--src/main/Level.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/Level.java b/src/main/Level.java
index 4110d4f..2e97367 100644
--- a/src/main/Level.java
+++ b/src/main/Level.java
@@ -21,7 +21,7 @@ public class Level
public ArrayList<Difficulty> diffList = new ArrayList<Difficulty>();
public Image background; //optional
- public Color[] colors = new Color[5];//optional, have default colors
+ public Color[] colors = new Color[]{Color.RED,Color.BLUE,Color.GREEN,Color.PURPLE,Color.YELLOW};//optional, have default colors
private JSONObject levelStuff;