Commit Description:
Two quick tweaks...
Commit Description:
Two quick tweaks Remove unnecessary HashShet and replace other HashSet with List. Adding to a HashSet seems to be slower than adding to the List
File last commit:
Show/Diff file:
Action:
SpriteFontPlus/src/GlyphInfo.cs
8 lines | 147 B | text/x-csharp | CSharpLexer
namespace SpriteFontPlus
{
public struct GlyphInfo
{
public int X, Y, Width, Height;
public int XOffset, YOffset;
public int XAdvance;
}
}