You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
453 B
24 lines
453 B
public class TestWizard
|
|
{
|
|
|
|
public static void main( String[] args )
|
|
{
|
|
|
|
Wizard w1 = new Wizard();
|
|
w1.wizardDetails();
|
|
w1.drinkPotion();
|
|
w1.wizardDetails();
|
|
w1.drinkPotion( 25 );
|
|
w1.wizardDetails();
|
|
|
|
Wizard w2 = new Wizard( 90, "Wand", "Fire Bolt" );
|
|
w2.wizardDetails();
|
|
w2.drinkPotion();
|
|
w2.wizardDetails();
|
|
w2.drinkPotion( 5 );
|
|
w2.wizardDetails();
|
|
|
|
|
|
}
|
|
|
|
}
|