]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - SuperPolarityLinux/Program.cs
Adds linux project.
[rbdr/super-polarity] / SuperPolarityLinux / Program.cs
diff --git a/SuperPolarityLinux/Program.cs b/SuperPolarityLinux/Program.cs
new file mode 100644 (file)
index 0000000..0aa991d
--- /dev/null
@@ -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;
+
+               /// <summary>
+               /// The main entry point for the application.
+               /// </summary>
+               [STAThread]
+               static void Main ()
+               {
+                       superPolarity = new SuperPolarity ();
+                       superPolarity.Run ();
+               }
+       }
+}