001 package core; 002 003 /** 004 * A stub class to identify the human players (for ui's) 005 */ 006 public class HumanPlayer extends Player 007 { 008 /** 009 * @see Player 010 */ 011 public HumanPlayer(Color color) 012 { 013 super(color); 014 } 015 016 /** 017 * @see Player 018 */ 019 public Move askForMove(Move opponentsMove) 020 { 021 return null; 022 } 023 024 /** 025 * @see Player 026 */ 027 public void update(Game game) 028 { 029 } 030 }