diff options
author | GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> | 2020-09-06 18:09:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 18:09:11 +0100 |
commit | 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 (patch) | |
tree | 54ff5cf753774be83feae2e15672ed4fa26ad4f1 /Program.cs |
Add files via upload
Diffstat (limited to 'Program.cs')
-rw-r--r-- | Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..379e7ef --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System;
+
+namespace Class_War
+{
+#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
+}
|