/* Die class for rolling dice
 * Author: CPSC 111 Jan 2010 class
 * Date: Fri 22 Jan 2010
 *
 * The beginnings of a Die class. From the client user's point of
 * view, we needed two methods: roll and setSides. From the designer's
 * point of view, we needed one field, numSides.
 *
 * This code has not been tested or even compiled, it's just a start
 * so far.
 *
 */

public class Die {

    //fields:
    int numSides;

    roll();

    setSides(int numSides);

    //integer between 1 and n with random probability

}
