void NextItem()
 {
     if (pingPongs.Count > 0)
     {
         Debug.Log("NEXT ITEM");
         PingPong pingPong = pingPongs.Dequeue();
         pingPong.Execute(OnFinishItem);
     }
     else
     {
         Debug.Log("END QUEUE");
     }
 }