diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-26 08:15:17 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-26 08:15:17 -0400 | 
| commit | 3b31a7221ad9959fe33298e2d712057a06dd11d0 (patch) | |
| tree | 561ce46fbf213383fedab080588274ba4b09ff92 | |
| parent | fcd65070900865a9e0b547c49968988abcda5ab9 (diff) | |
| download | NPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.tar.gz NPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.tar.bz2 NPEhero-3b31a7221ad9959fe33298e2d712057a06dd11d0.zip | |
add default colors to Level
| -rw-r--r-- | src/main/Level.java | 2 | 
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; | 
