Beispiel #1
0
 public Wizard(string Name, int Health, Spellbook ObjectBook, WizardStick ObjectStick)
 {
     this.Name        = Name;
     this.Health      = Health;
     this.ObjectBook  = ObjectBook;
     this.ObjectStick = ObjectStick;
 }
Beispiel #2
0
 public void OutStick()
 {
     this.ObjectStick = null;
 }
Beispiel #3
0
 public void GetStick(WizardStick stick)
 {
     this.ObjectStick = stick;
 }