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

/******************************************************
 *
 * Fill in your documentation here
 *
 ******************************************************/
public class PigGame 
{
	private int BAD_ROLL = 1;
	private int LIMIT = 50;
	
	private Scanner scan;
	private Random randi;
	private String playerName;
	private String computerName;
	private int playerScore;
	private int computerScore;

	public void playGame(Random randGen)
	{		
		scan = new Scanner(System.in);
		randi = randGen;
	}

	public int computerTurn() 
	{
	}

	public void printScore(String name, int roll, int turn, int score)
	{
	}
	
	public int playerTurn() 
	{
	}

}
