123456789101112131415161718 |
- #if MONOGAME || FNA
- using Microsoft.Xna.Framework;
- #elif STRIDE
- using Stride.Core.Mathematics;
- #else
- using System.Drawing;
- #endif
- namespace FontStashSharp
- {
- public struct Glyph
- {
- public int Index;
- public int Codepoint;
- public Rectangle Bounds;
- public int XAdvance;
- }
- }
|