public static void RecycleAll(this GameObject prefab)
 {
     ObjectPool.RecycleAll(prefab);
 }
 public static void RecycleAll <T> (this T prefab) where T : Component
 {
     ObjectPool.RecycleAll(prefab);
 }