mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
15 lines
291 B
C#
15 lines
291 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "ImageDataDecalPosition", Namespace = "")]
|
|
[Serializable]
|
|
public class ImageDataDecalPosition
|
|
{
|
|
[XmlElement(ElementName = "X")]
|
|
public int X;
|
|
|
|
[XmlElement(ElementName = "Y")]
|
|
public int Y;
|
|
}
|