using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace BansheeEngine { /** @addtogroup GUI_Engine * @{ */ /// Kerning pair representing larger or smaller offset between a specific pair of characters. [StructLayout(LayoutKind.Sequential), SerializeObject] public partial struct KerningPair { public uint otherCharId; public int amount; } /** @} */ }