From 6ed2a7cb4a2de7bc1e48f94bf68f196124756920 Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 19 May 2019 10:53:35 -0400 Subject: Add project files. --- QuantumNet/Program.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 QuantumNet/Program.cs (limited to 'QuantumNet/Program.cs') 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 +{ + /// + /// The main class. + /// + public static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + using (var game = new GameInitalization()) + game.Run(); + } + } +} -- cgit v1.2.3