예제 #1
0
 public ZombieParameter(ZombieType type, ZombieTrait trait, int count)
 {
     Type  = type;
     Trait = trait;
     Count = count;
 }
예제 #2
0
파일: Zombie.cs 프로젝트: mawagusura/Zarwin
 public Zombie(int id, ZombieTrait zombieTrait, ZombieType zombieType)
 {
     this.Trait = zombieTrait;
     this.Type  = zombieType;
     this.Id    = id;
 }