Files
depthsbelow/DepthsBelow/DepthsBelow/Program.cs
T
2012-09-25 21:23:33 +02:00

22 lines
385 B
C#

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
}