diff options
| author | Alee <Alee14498@gmail.com> | 2019-05-19 10:53:35 -0400 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-05-19 10:53:35 -0400 |
| commit | 6ed2a7cb4a2de7bc1e48f94bf68f196124756920 (patch) | |
| tree | 19f7691801d3340408d46f1a1ba3039b3c03fbb3 /QuantumNet/Program.cs | |
| parent | 3ccda1094bfc6f9db8031bd59e2fc10b09e853e0 (diff) | |
| download | QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.tar.gz QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.tar.bz2 QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.zip | |
Add project files.
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(); + } + } +} |
