View Single Post
Old 02-19-2004, 10:23 PM   #2 (permalink)
n0nsensical
Junkie
 
Location: San Francisco
There is only one constructor defined for class GameDice, specifically one that takes an integer parameter. You can either make a new constructor that takes no parameters or change the statements

GameDice dice1 = new GameDice();
GameDice dice2 = new GameDice();

to pass an int.
n0nsensical is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34