From 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 Mon Sep 17 00:00:00 2001
From: GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com>
Date: Sun, 6 Sep 2020 18:09:11 +0100
Subject: Add files via upload
---
Program.cs | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 Program.cs
(limited to 'Program.cs')
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
+ ///
+ /// The main class.
+ ///
+ public static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ using (var game = new Game1())
+ game.Run();
+ }
+ }
+#endif
+}
--
cgit v1.2.1