sodoff/src/Schema/GameProgress.cs
Hipposgrumm 6a9f2722e1 Added saving support for Ice Cubed. (#15)
Saving support now exists for Ice Cubed and any other games using the system.
2024-08-12 09:06:13 +00:00

21 lines
410 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "progress", Namespace = "")]
[Serializable]
public class GameProgress {
[XmlElement(ElementName = "name")]
public string Name;
[XmlElement(ElementName = "version")]
public string Version;
[XmlElement(ElementName = "chapter")]
public string[] Chapter;
[XmlElement(ElementName = "custom")]
public string? Custom;
}