diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/com/fourisland/frigidearth/Tile.java | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/com/fourisland/frigidearth/Tile.java b/src/com/fourisland/frigidearth/Tile.java index cc128a6..be17d6c 100644 --- a/src/com/fourisland/frigidearth/Tile.java +++ b/src/com/fourisland/frigidearth/Tile.java | |||
@@ -26,7 +26,7 @@ public enum Tile | |||
26 | 26 | ||
27 | public Color getBackgroundColor() | 27 | public Color getBackgroundColor() |
28 | { | 28 | { |
29 | return new Color(96, 51, 17); | 29 | return new Color(0, 63, 135); |
30 | } | 30 | } |
31 | }, | 31 | }, |
32 | DirtFloor { | 32 | DirtFloor { |
@@ -37,7 +37,7 @@ public enum Tile | |||
37 | 37 | ||
38 | public Color getBackgroundColor() | 38 | public Color getBackgroundColor() |
39 | { | 39 | { |
40 | return new Color(205, 127, 50); | 40 | return new Color(162, 181, 205); |
41 | } | 41 | } |
42 | }, | 42 | }, |
43 | StoneWall { | 43 | StoneWall { |
@@ -75,7 +75,7 @@ public enum Tile | |||
75 | 75 | ||
76 | public Color getBackgroundColor() | 76 | public Color getBackgroundColor() |
77 | { | 77 | { |
78 | return new Color(96, 51, 17); | 78 | return new Color(0, 63, 135); |
79 | } | 79 | } |
80 | }, | 80 | }, |
81 | UpStairs { | 81 | UpStairs { |
@@ -88,6 +88,11 @@ public enum Tile | |||
88 | { | 88 | { |
89 | return '>'; | 89 | return '>'; |
90 | } | 90 | } |
91 | |||
92 | public Color getBackgroundColor() | ||
93 | { | ||
94 | return new Color(162, 181, 205); | ||
95 | } | ||
91 | }, | 96 | }, |
92 | DownStairs { | 97 | DownStairs { |
93 | public boolean isBlocked() | 98 | public boolean isBlocked() |
@@ -99,6 +104,11 @@ public enum Tile | |||
99 | { | 104 | { |
100 | return '<'; | 105 | return '<'; |
101 | } | 106 | } |
107 | |||
108 | public Color getBackgroundColor() | ||
109 | { | ||
110 | return new Color(162, 181, 205); | ||
111 | } | ||
102 | }; | 112 | }; |
103 | 113 | ||
104 | public abstract boolean isBlocked(); | 114 | public abstract boolean isBlocked(); |