sodoff/src/Schema/StepMessage.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

18 lines
458 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "StepMessage", Namespace = "")]
[Serializable]
public class StepMessage
{
[XmlElement(ElementName = "Text", IsNullable = true)]
public string Text;
[XmlElement(ElementName = "ItemID", IsNullable = true)]
public int? ItemID;
[XmlElement(ElementName = "Scale", IsNullable = true)]
public float? Scale;
}
}