Replaced the old VS templates with ones that offer more flexiblity. Started replacing the Content Project for the samples with our custom project type. Inlcuded a basic not yet working AssimpImporter.
22 lines
544 B
C#
22 lines
544 B
C#
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<ProcessorParameter>
|
|
{
|
|
internal ProcessorParameterCollection(IEnumerable<ProcessorParameter> parameters)
|
|
: base(new List<ProcessorParameter>(parameters))
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|