Konstantin Koch 8287c54432 Included the Visual Studio extension and made the necessary changes to make it run.
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.
2015-04-08 14:50:03 +02:00

59 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ANX.Framework.VisualStudio
{
[Serializable]
public class ProcessorParameter
{
public ProcessorParameter(string propertyName, string displayName, string propertyType, string value, string defaultValue, string description)
{
this.PropertyName = propertyName;
this.DisplayName = displayName;
this.PropertyType = propertyType;
this.DefaultValue = defaultValue;
this.Description = description;
this.Value = value;
}
public string PropertyName
{
get;
private set;
}
public string DisplayName
{
get;
private set;
}
public string PropertyType
{
get;
private set;
}
public string DefaultValue
{
get;
private set;
}
public string Description
{
get;
private set;
}
public string Value
{
get;
private set;
}
}
}