KerningPair.generated.cs 433 B

1234567891011121314151617181920
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup GUI_Engine
  7. * @{
  8. */
  9. /// <summary>Kerning pair representing larger or smaller offset between a specific pair of characters.</summary>
  10. [StructLayout(LayoutKind.Sequential), SerializeObject]
  11. public partial struct KerningPair
  12. {
  13. public uint otherCharId;
  14. public int amount;
  15. }
  16. /** @} */
  17. }