Exemple #1
0
 internal Enumerator(AssetBundleGroup coll)
 {
     if (coll == null)
     {
         throw new System.ArgumentNullException("coll");
     }
     _bundle = coll;
     _e      = default(HashSet <IAssetBundle> .Enumerator);
     _state  = 0;
 }
Exemple #2
0
 public void Dispose()
 {
     _bundle = null;
     _e.Dispose();
     _state = 3;
 }