v0.1
This commit is contained in:
26
Subsurface/Source/Program.cs
Normal file
26
Subsurface/Source/Program.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
#region Using Statements
|
||||
|
||||
using System;
|
||||
|
||||
#endregion
|
||||
|
||||
namespace Subsurface
|
||||
{
|
||||
#if WINDOWS || LINUX
|
||||
/// <summary>
|
||||
/// The main class.
|
||||
/// </summary>
|
||||
public static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
using (var game = new Game1())
|
||||
game.Run();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
Reference in New Issue
Block a user