/**
 * This class implements a simple Player of the game NibbleNabble.
 * @author Your Name Here
 * @version 1.0
 * @since 1.8
 *
 */
public class Player {

	/* Two private properties: String name and character token */
	
	/**
	 * No-args constructor initializes the name to Computer and token to the letter O.
	 */
	// TODO: No-args constructor

	/**
	 * Initial constructor initializes the name to the specified parameter and token to the letter X.
	 * 
	 * @param name The Player's name.
	 */
	
	
	
	
	/**
	 * Getter method that returns the Player's name.
	 * @return the Player's name
	 */
	
	
	
	
	/**
	 * Returns the Player's token (X or O).
	 * @return X if the Player is the end user, or O if the Player is the computer.
	 */
	
	
	
	
}
