mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
15 lines
243 B
C#
15 lines
243 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "AvatarDataPartOffset", Namespace = "")]
|
|
[Serializable]
|
|
public class AvatarDataPartOffset
|
|
{
|
|
public float X;
|
|
|
|
public float Y;
|
|
|
|
public float Z;
|
|
}
|