public Explosion(Meteorite meteor) { Img = Game.GetImageByName("explosion"); Img.Width = meteor.Radius * 4; Health = 1; Game.PlaySound("explosion"); }
public Debris(Meteorite meteor) { Img = Game.GetImageByName("meteorite_crash"); Img.Width = meteor.Radius * 2; Health = 1; Game.PlaySound("crash"); }