WingMan – Diff between revs 1 and 2

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 1 Rev 2
1 using System; 1 using System;
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.Linq; 3 using System.Linq;
4 using System.Threading.Tasks; 4 using System.Threading.Tasks;
5 using System.Windows.Forms; 5 using System.Windows.Forms;
6   6  
7 namespace WingMan 7 namespace WingMan
8 { 8 {
9 static class Program 9 static class Program
10 { 10 {
11 /// <summary> 11 /// <summary>
12 /// The main entry point for the application. 12 /// The main entry point for the application.
13 /// </summary> 13 /// </summary>
14 [STAThread] 14 [STAThread]
15 static void Main() 15 static void Main()
16 { 16 {
17 Application.EnableVisualStyles(); 17 Application.EnableVisualStyles();
18 Application.SetCompatibleTextRenderingDefault(false); 18 Application.SetCompatibleTextRenderingDefault(false);
19 Application.Run(new Form1()); 19 Application.Run(new WingManForm());
20 } 20 }
21 } 21 }
22 } 22 }
23   23