diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-02-10 22:34:27 -0800 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-02-10 22:34:27 -0800 |
| commit | 6fceaa7b34f4d6efc497cda51679b37e530a61aa (patch) | |
| tree | e8fa1c1865c072ac592d7118bd88d763035e249b /SuperPolarityLinux/Program.cs | |
| parent | 63419029fbda7d3f2f3d5984c3d2c77f341dbd79 (diff) | |
Adds linux project.
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 (); + } + } +} |