aboutsummaryrefslogtreecommitdiff
path: root/SuperPolarity/Program.cs
blob: 6c3f6141a1eec6053e0f6656d4fb98bfb6513489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
}