Files
depthsbelow/Krypton/KryptonTestbed/KryptonTestbed/Program.cs
T
Simon Holmberg 93466568f4 Updated Krypton
2012-09-30 11:17:59 +02:00

22 lines
410 B
C#
Executable File

using System;
namespace KryptonTestbed
{
#if WINDOWS || XBOX
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
using (KryptonDemoGame game = new KryptonDemoGame())
{
game.Run();
}
}
}
#endif
}