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