aboutsummaryrefslogtreecommitdiff
path: root/SuperPolarityLinux/Program.cs
blob: 0aa991d1fd0c57460bdee9e7728e9f2da054e265 (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
#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 ();
		}
	}
}