diff options
Diffstat (limited to 'SuperPolarityLinux/Program.cs')
| -rw-r--r-- | SuperPolarityLinux/Program.cs | 24 |
1 files changed, 24 insertions, 0 deletions
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; + + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main () + { + superPolarity = new SuperPolarity (); + superPolarity.Run (); + } + } +} |