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