]> git.r.bdr.sh - rbdr/super-polarity/blame - SuperPolarityLinux/Program.cs
Adds linux project.
[rbdr/super-polarity] / SuperPolarityLinux / Program.cs
CommitLineData
6fceaa7b
BB
1#region Using Statements
2using System;
3using System.Collections.Generic;
4using System.Linq;
5
6#endregion
7
8namespace SuperPolarity
9{
10 static class Program
11 {
12 private static SuperPolarity superPolarity;
13
14 /// <summary>
15 /// The main entry point for the application.
16 /// </summary>
17 [STAThread]
18 static void Main ()
19 {
20 superPolarity = new SuperPolarity ();
21 superPolarity.Run ();
22 }
23 }
24}