import java.util.Scanner;
import java.util.Random;

/********************************************************************
 * RatGame plays the game of Rat, our variant of the old game of Pig
 *******************************************************************/
public class RatGame
{
	private Player player1;
	private Player player2;
	private Random rand;
	private Scanner kb;
	
	/******************************************************************
	 * Explicit value constructor to initialize the game elements
	 *
	 * @param kb The Scanner object (assumed to be the keyboard)
	 * @param player1 The first player defined
	 * @param player2 The second player defined
	 * @param seed 	The seed value to begin the random generator
	 ******************************************************************/
	public RatGame(Scanner kb, Player players[], int seed)
	{
		
		
	}
	
	/******************************************************************
	 * playGame performs the game controls and "plays" the game
	 *****************************************************************/
	public void playGame()
	{
		
	
	
	}
}