namespace RbxlReader.DataTypes; public class Quaternion { public float X, Y, Z, W; public override string ToString() => $"{X}, {Y}, {Z}, {W}"; }