/* RollDice class for rolling dice
 * Author: CPSC 111 Jan 2010 class
 * Date: Mon 25 Jan 2010
 *
 * Start of tester for Die2 class. It's not finished, and 
 * we have not compiled or tested this yet. 
 * We particularly need to check if the Die2 import is the right way
 * to accomplish our goal.
 */

import Die2; // is this the right thing? 
import java.util.Scanner;

public class RollDice
{
    public static void main ( String [] args)
    {
	Die2 myDie = new Die2();
	System.out.println("How many sides do you want?");
	// need a Scanner
	Scanner scanThing = new Scanner(System.in); 
	int a = scanThing.nextInt();
    }
}


