1: 2: package maze.snow; 3: 4: import java.awt.*; 5: import maze.*; 6: 7: class SnowWhiteWall extends Wall { 8: 9: public static final Color WALL_COLOR = new Color(255, 20, 147); 10: 11: public void draw(Graphics g, int x, int y, int w, int h) { 12: g.setColor(WALL_COLOR); 13: g.fillRect(x, y, w, h); 14: } 15: 16: }