package a2geek.games.mousemaze2001.mazeobjects; import java.awt.*; /** * Insert the type's description here. * * Creation date: (10/23/01 9:38:56 PM) * @author: Rob Greene * @version: RJG 10/23/2001 23:16:23 */ public class GreenTile extends ColoredMazeObject { /** * GreenTile constructor comment. */ public GreenTile() { super(); } /** * Retrieve the background color of this tile. * * Creation date: (10/23/01 9:50:07 PM) */ public Color getBackground() { return Color.green; } }