sodoff/src/Schema/StepNPCData.cs
YoshiCraft64 995bcd6307
Adventureland Part 1
Adds most of the stuff related to AL. Part 2 will have the mission data itself.
2025-02-09 21:28:44 -06:00

21 lines
502 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "StepNPCData", Namespace = "")]
[Serializable]
public class StepNPCData
{
[XmlElement(ElementName = "NPC")]
public string NPC;
[XmlElement(ElementName = "Marker")]
public string Marker;
[XmlElement(ElementName = "Scene")]
public string Scene;
[XmlElement(ElementName = "Animation", IsNullable = true)]
public string Animation;
}
}