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

21 lines
439 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "ImageDataDecal", Namespace = "")]
[Serializable]
public class ImageDataDecal
{
[XmlElement(ElementName = "Name")]
public string Name;
[XmlElement(ElementName = "Position")]
public ImageDataDecalPosition Position;
[XmlElement(ElementName = "Width")]
public int Width;
[XmlElement(ElementName = "Height")]
public int Height;
}