Commit Description:
Early working version (including all dependencies, lol).
Commit Description:
Early working version (including all dependencies, lol).
References:
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;
}
}