Ejemplo n.º 1
0
 private Monster(string name, int hitPoints, Position pos, Weapon weapon)
 {
     Name = name;
     HitPoints = hitPoints;
     Pos = pos;
     Weapon = weapon;
 }
Ejemplo n.º 2
0
 public Hero(string name, int hitPoints, Position pos, Weapon weapon)
 {
     Name = name;
     HitPoints = hitPoints;
     Pos = pos;
     Weapon = weapon;
 }
Ejemplo n.º 3
0
 private Monster(string name, int hitPoints, Weapon weapon)
 {
     Name = name;
     HitPoints = hitPoints;
     Weapon = weapon;
 }