import edu.neu.universe.*; /** * A class that represents a player * it records that last roll * @author Viera K. Proulx * @since 9 April 2010 */ public class MyPlayer extends Player{ /** a record of the last roll of the dice */ int roll; MyPlayer(){ super(); this.roll = 0; } }