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