public void Draw(GraphicsDevice graphicsDevice)
 {
     if (projectile)
     {
         CollisionPolygon.FillPolygon(graphicsDevice, ProjectileTexture);
     }
     else
     {
         CollisionPolygon.FillPolygon(graphicsDevice, BlockTexture);
     }
 }