Commit Description:
Switch over to SoundEffectsEngine...
Commit Description:
Switch over to SoundEffectsEngine Replace inline calls to play sounds to a dedicated engine. Having an engine will also make it easier to have audio settings.
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;
}
}