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

24 lines
602 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "StepTaskObjectivePhoto", Namespace = "")]
[Serializable]
public class StepTaskObjectivePhoto
{
[XmlElement(ElementName = "ItemName")]
public string[] ItemName;
[XmlElement(ElementName = "NPC")]
public string[] NPC;
[XmlElement(ElementName = "CategoryID")]
public int[] CategoryID;
[XmlElement(ElementName = "AttributeID")]
public int[] AttributeID;
[XmlElement(ElementName = "Quantity")]
public int Quantity;
}
}