using ANX.Framework.NonXNA.Development; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; namespace ANX.Framework.Content.Pipeline { [Developer("KorsarNek")] [Serializable] public sealed class ProcessorParameterCollection : ReadOnlyCollection { internal ProcessorParameterCollection(IEnumerable parameters) : base(new List(parameters)) { } } }