From 63a61ee2be3a902c27cd000d41b1a3a0280be21a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 22 Oct 2013 23:11:13 -0500 Subject: First commit. Starting with MonoGame. --- Super Polarity/Program.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Super Polarity/Program.cs (limited to 'Super Polarity/Program.cs') diff --git a/Super Polarity/Program.cs b/Super Polarity/Program.cs new file mode 100644 index 0000000..6c3f614 --- /dev/null +++ b/Super Polarity/Program.cs @@ -0,0 +1,26 @@ +#region Using Statements +using System; +using System.Collections.Generic; +using System.Linq; +#endregion + +namespace SuperPolarity +{ +#if WINDOWS || LINUX + /// + /// The main class. + /// + public static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + using (var superPolarity = new SuperPolarity()) + superPolarity.Run(); + } + } +#endif +} -- cgit