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