From 6fceaa7b34f4d6efc497cda51679b37e530a61aa Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 10 Feb 2014 22:34:27 -0800 Subject: Adds linux project. --- SuperPolarityLinux/Program.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 SuperPolarityLinux/Program.cs (limited to 'SuperPolarityLinux/Program.cs') diff --git a/SuperPolarityLinux/Program.cs b/SuperPolarityLinux/Program.cs new file mode 100644 index 0000000..0aa991d --- /dev/null +++ b/SuperPolarityLinux/Program.cs @@ -0,0 +1,24 @@ +#region Using Statements +using System; +using System.Collections.Generic; +using System.Linq; + +#endregion + +namespace SuperPolarity +{ + static class Program + { + private static SuperPolarity superPolarity; + + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main () + { + superPolarity = new SuperPolarity (); + superPolarity.Run (); + } + } +} -- cgit