void AssignPoints(string tagName)
 {
     if (tagName == "Bullet")
     {
         GM.UpdateScore(5);
     }
     else if (tagName == "Asteroid")
     {
         GM.UpdateScore(10);
     }
 }