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