/*****************************************************
 * The Game of Nim
 *		In this game, players try to not take the last marble from a pile of 
 *    marbles.  They may take any number of marbles between 1 marble and 1/2
 *    of all the marbles.  The loser is the person who takes the last marble.
 *
 * In this variant, there is one human player and one computer player.
 *
 * @author <YOUR NAME HERE>
 * @version V1
 ****************************************************/
 public class Nim
 {
 	private String name;   // the name of the player
	private Scanner kb; 		// Scanner for reading in player responses
	private Random  rand;  // a Random number generator

	/*****************************************************************
	 * Constructor 
	 * @param scan The keyboard scanner to receive guesses from user
	 * @param seed The seed value to start the random generator
	 * @param name The name of the human player
	 ****************************************************************/
	public Nim(Scanner scan, int seed, String name)
	{
		this.kb = scan;
		this.name = name;
		this.rand = new Random(seed);
	}
	
	/*********************************************************************
	 * This method plays the games of Nim.  Play continues until the player
	 * chooses not to play again.
	 *********************************************************************/
	public void playGame()
	{
	
	}
	
	