public class HumanPlayer extends player
{
  public HumanPlayer()
  {
    isHuman = true;
    playerInit();
  }
  abstract public char [][] doTurn(char [][] currentBoard);
  {
    //read in mouse button presses and stuff
    //check the word being put down
    //if ok, continue, add point to this players total
  }
}
