jumpstart-games-reduxed/src/Schema/RaisedPetGrowthState.cs
hictooth 5f7921ea6f implement dragons
pets, which are dragons in SoD
2023-06-21 21:01:54 +01:00

21 lines
409 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "RPGS", Namespace = "")]
[Serializable]
public class RaisedPetGrowthState
{
[XmlElement(ElementName = "id")]
public int GrowthStateID;
[XmlElement(ElementName = "n")]
public string Name;
[XmlElement(ElementName = "ptid")]
public int PetTypeID;
[XmlElement(ElementName = "o")]
public int Order;
}