Esempio n. 1
0
 public Creature(int hit, string profile, int power, CreatureWeapon threaten)
 {
     Hp       = hit;
     Strength = power;
     Name     = profile;
     Weapon   = threaten;
 }
Esempio n. 2
0
 public Skeleton(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
Esempio n. 3
0
 public SnowSlime(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
Esempio n. 4
0
 public Sorcerer(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
Esempio n. 5
0
 public Hybird(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }