mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
21 lines
502 B
C#
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;
|
|
}
|
|
} |