Commit Description:
Add to Makefile.
Commit Description:
Add to Makefile.
File last commit:
Show/Diff file:
Action:
SpriteFontPlus/src/FontStashSharp/FontAtlasNode.cs
12 lines | 199 B | text/x-csharp | CSharpLexer
using System.Runtime.InteropServices;
namespace FontStashSharp
{
[StructLayout(LayoutKind.Sequential)]
internal struct FontAtlasNode
{
public int X;
public int Y;
public int Width;
}
}