WingMan – Diff between revs 2 and 7

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