X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/63419029fbda7d3f2f3d5984c3d2c77f341dbd79..6fceaa7b34f4d6efc497cda51679b37e530a61aa:/SuperPolarityLinux/Program.cs?ds=sidebyside 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 (); + } + } +}