diff options
| author | Ben Beltran <ben@nsovocal.com> | 2013-10-22 23:11:13 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2013-10-22 23:11:13 -0500 |
| commit | 63a61ee2be3a902c27cd000d41b1a3a0280be21a (patch) | |
| tree | 9263e72e71e6a961acda6e68d6ba82eba29eadc3 /Super Polarity/Program.cs | |
First commit. Starting with MonoGame.
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 +} |