/// <summary> /// Imports objects from another collection into this collection. /// </summary> /// <param name="other">The WwiseObjectCollection to import objects from.</param> public void Import(WwiseObjectCollection other) { foreach (KeyValuePair <uint, IWwiseObject> objectPair in other._objects) { _objects[objectPair.Key] = objectPair.Value; } }
/// <summary> /// Imports objects from another collection into this collection. /// </summary> /// <param name="other">The WwiseObjectCollection to import objects from.</param> public void Import(WwiseObjectCollection other) { foreach (KeyValuePair<uint, IWwiseObject> objectPair in other._objects) _objects[objectPair.Key] = objectPair.Value; }