// Class: Marker
//
// Author: Alyce Brady
//
// License Information:
//   This class is free software; you can redistribute it and/or modify
//   it under the terms of the GNU General Public License as published by
//   the Free Software Foundation.
//
//   This class is distributed in the hope that it will be useful,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//   GNU General Public License for more details.

import java.awt.Color;

import edu.kzoo.grid.ColorBlock;
import edu.kzoo.util.NamedColor;

/**
 *  Mouse in a Maze Program:<br>
 *
 *    A Marker object marks where a mouse has been.  (Like Hansel and Gretel
 *    leaving bread crumbs behind them)
 *
 *  @author Alyce Brady
 *  @version 4 October 2025
 **/
public class Marker extends ColorBlock
{
    /** Constructs a piece of cheese at the specified location in
     *  a grid.
     **/
    public Marker()
    {
        super(new NamedColor(Color.LIGHT_GRAY));
    }

}
