Example #1
0
 static void Main(string[] args)
 {
     Garden g = new Garden();
     g.play();
 }
Example #2
0
 public Zombie(Garden g, int x, int y) : base(g, x, y)
 {
     health = INITIAL_HEALTH;
 }