diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-02-03 09:51:07 -0600 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-02-03 09:51:07 -0600 |
| commit | 3de51c6f55d304f038df1b77c8ab346e2a187fe1 (patch) | |
| tree | 2ce589b8961bdf60c21af2a711365cb06439b13a /Super Polarity/Program.cs | |
| parent | 8534e46e400268c5ceffb3b14f02cef39eedae8f (diff) | |
| parent | bca44639c27169b0643de1b56361e6c2958d1d4a (diff) | |
Merge branch 'master' of github.com:benbeltran/super-polarity
Conflicts:
.gitignore
Diffstat (limited to 'Super Polarity/Program.cs')
| -rw-r--r-- | Super Polarity/Program.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Super Polarity/Program.cs b/Super Polarity/Program.cs new file mode 100644 index 0000000..6c3f614 --- /dev/null +++ b/Super Polarity/Program.cs @@ -0,0 +1,26 @@ +#region Using Statements +using System; +using System.Collections.Generic; +using System.Linq; +#endregion + +namespace SuperPolarity +{ +#if WINDOWS || LINUX + /// <summary> + /// The main class. + /// </summary> + public static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + using (var superPolarity = new SuperPolarity()) + superPolarity.Run(); + } + } +#endif +} |