diff options
Diffstat (limited to 'QuantumNet/Program.cs')
| -rw-r--r-- | QuantumNet/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/QuantumNet/Program.cs b/QuantumNet/Program.cs new file mode 100644 index 0000000..e0b279a --- /dev/null +++ b/QuantumNet/Program.cs @@ -0,0 +1,20 @@ +using System; + +namespace QuantumNet +{ + /// <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 GameInitalization()) + game.Run(); + } + } +} |
