Glatzemann 188bda28a5 - added new sample "SimpleNoContent" to test some things on Windows 8 without ContentPipeline
- tweaked the build-script for better support on Windows 8
- fixed bug #1016 (with a workaround. new issue will follow)
- fixed some render system issues on Windows 8
2015-03-15 01:11:22 +01:00

17 lines
268 B
C#

using System;
namespace SimpleModernUI
{
static class Program
{
[STAThread]
static void Main()
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}