Пример #1
0
 public Hero(int id, int hp, int damage, string name, string className)
 {
     this.id        = id;
     this.hp        = hp;
     this.damage    = damage;
     this.name      = name;
     this.classType = PlayerClassType.newSubclassInstance(className);
 }
Пример #2
0
 public Hero(int id, int hp, int damage, string name, PlayerClassType classType)
 {
     this.id        = id;
     this.hp        = hp;
     this.damage    = damage;
     this.name      = name;
     this.classType = classType;
 }