public void draw(SpriteBatch spriteBatch)
        {
            EnemyShotManager.Draw(spriteBatch);

            foreach (Enemy enemy in Enemies)
            {
                enemy.Draw(spriteBatch);
            }
        }
 public void Draw(SpriteBatch spritebatch)
 {
     PlayerShotManager.Draw(spritebatch);
 }