Files
depthsbelow/DepthsBelow/DepthsBelow/Program.cs
T
Jace cd913a8401 Mouse buttons properly recognized in interface.
Also file mode changes. I don't care.
2012-10-22 17:05:26 +02:00

22 lines
385 B
C#
Executable File

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