FontAtlasNode.cs 199 B

123456789101112
  1. using System.Runtime.InteropServices;
  2. namespace FontStashSharp
  3. {
  4. [StructLayout(LayoutKind.Sequential)]
  5. internal struct FontAtlasNode
  6. {
  7. public int X;
  8. public int Y;
  9. public int Width;
  10. }
  11. }