cd913a8401
Also file mode changes. I don't care.
22 lines
385 B
C#
Executable File
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
|
|
}
|
|
|