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

32 lines
687 B
C#

using ANX.Framework.NonXNA.Development;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
namespace ANX.Framework.Content.Pipeline.Tasks.References
{
[Serializable]
public abstract class Reference
{
public string Name
{
get;
set;
}
public virtual void Write(XmlWriter writer)
{
writer.WriteStartAttribute("Name");
writer.WriteString(this.Name);
writer.WriteEndAttribute();
}
public virtual void Load(XmlReader reader)
{
this.Name = reader.GetAttribute("Name");
}
}
}