#region usings using System; using OpenTK; #endregion namespace SM.Base.Drawing.Text { /// /// Contains information for a font character. /// [Serializable] public struct CharParameter { /// /// The advance on the X-axis. /// public int Advance; /// /// The bearing for this char. /// public float BearingX; /// /// The width of the character. /// public float Width; /// /// Matrix for the texture. /// public Matrix3 TextureMatrix; } }