/**
 * Player interface
 * A generic player interface
 *
 * @author Matthew Charnetski
 * @author Anne Feltovich
 * @author Elizabeth Ottesen
 * @author Austin Wells
 * @version 1.0 of March 2000
 */
public interface Player {

    /**
     *This method gets a move from the player, and tells the board to make it.
     */
    public void makeMove(Board board, Rules rules, String color) {
    }//makeMove

}//interface Player

