예제 #1
0
 public Creature(int hit, string profile, int power, CreatureWeapon threaten)
 {
     Hp       = hit;
     Strength = power;
     Name     = profile;
     Weapon   = threaten;
 }
예제 #2
0
 public Skeleton(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
예제 #3
0
 public SnowSlime(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
예제 #4
0
 public Sorcerer(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }
예제 #5
0
파일: Hybird.cs 프로젝트: StickWolf/MyClass
 public Hybird(int hit, string profile, int power, CreatureWeapon threaten)
     : base(hit, profile, power, threaten)
 {
 }