Commit Description:
Fix bug introduced by FNA upgrade....
Commit Description:
Fix bug introduced by FNA upgrade. I think FNA or one of its dependencies fixed a bug with the pipe key being mislabeled as the backslash key. It does have a backslash on it, but only upon shift.
File last commit:
Show/Diff file:
Action:
SpriteFontPlus/samples/SpriteFontPlus.Samples.TextureAtlasFull/Program.cs
20 lines | 414 B | text/x-csharp | CSharpLexer
Early working version (including all dependencies, lol).
r0 using System;
namespace SpriteFontPlus.Samples.TextureAtlasFull
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}