mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
21 lines
387 B
C#
21 lines
387 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "RPC", Namespace = "")]
|
|
[Serializable]
|
|
public class RaisedPetColor
|
|
{
|
|
[XmlElement(ElementName = "o")]
|
|
public int Order;
|
|
|
|
[XmlElement(ElementName = "r")]
|
|
public float Red;
|
|
|
|
[XmlElement(ElementName = "g")]
|
|
public float Green;
|
|
|
|
[XmlElement(ElementName = "b")]
|
|
public float Blue;
|
|
}
|