Exemplo n.º 1
0
 private void InvokeMeteorHit(Meteor meteor)
 {
     if (MeteorWasHit != null)
     {
         MeteorWasHit(this,
             new MeteorHitEventArgs {Meteor = meteor });
     }
 }
Exemplo n.º 2
0
 public static void RaiseMeteorHit(Meteor meteor)
 {
     TheGameManager.InvokeMeteorHit(meteor);
 }