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

13 lines
294 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "MissionData", Namespace = "", IsNullable = false)]
[Serializable]
public class MissionData
{
[XmlElement(ElementName = "Mission")]
public MissionDataMission[] Mission;
}
}