Example #1
0
 public ZombieParameter(ZombieType type, ZombieTrait trait, int count)
 {
     Type  = type;
     Trait = trait;
     Count = count;
 }
Example #2
0
 public Zombie(int id, ZombieTrait zombieTrait, ZombieType zombieType)
 {
     this.Trait = zombieTrait;
     this.Type  = zombieType;
     this.Id    = id;
 }