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

15 lines
333 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "StepStoreItem", Namespace = "")]
[Serializable]
public class StepStoreItem
{
[XmlElement(ElementName = "StoreID")]
public int StoreID;
[XmlElement(ElementName = "ItemID")]
public int ItemID;
}
}