mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
21 lines
454 B
C#
21 lines
454 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "IT", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemDataTexture
|
|
{
|
|
[XmlElement(ElementName = "n")]
|
|
public string TextureName;
|
|
|
|
[XmlElement(ElementName = "t")]
|
|
public string TextureTypeName;
|
|
|
|
[XmlElement(ElementName = "x", IsNullable = true)]
|
|
public float? OffsetX;
|
|
|
|
[XmlElement(ElementName = "y", IsNullable = true)]
|
|
public float? OffsetY;
|
|
}
|