Beispiel #1
0
 private PhantomDancer(string name, int agility, int intelligence, int strength, int strikePwr, ItemCollection <Item> bagItems) //private constructor
 {
     this.name         = name;
     this.agility      = agility;
     this.intelligence = intelligence;
     this.strength     = strength;
     this.strikePwr    = strikePwr;
     this.bagItems     = bagItems;
 }
Beispiel #2
0
 public Hero(ItemCollection <Item> bagItems)
 {
     this.bagItems = bagItems;
 }