void OnCollisionEnter(Collision c)
 {
     if (c.gameObject.tag == spreadShotTag)
     {
         Destroy(c.gameObject);
         tShooting.SetupSpreadShot();
         //tell tank shooting to be spreadshot
     }
 }