corrade-vassal – Diff between revs 2 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 13
Line 3... Line 3...
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // 3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. // 4 // rights of fair usage, the disclaimer and warranty conditions. //
5 /////////////////////////////////////////////////////////////////////////// 5 ///////////////////////////////////////////////////////////////////////////
Line 6... Line 6...
6   6  
7 using System; -  
8 using System.Collections.Generic; -  
9 using System.Linq; -  
10 using System.Threading.Tasks; 7 using System;
Line 11... Line 8...
11 using System.Windows.Forms; 8 using System.Windows.Forms;
12   9  
13 namespace Vassal 10 namespace Vassal
14 { 11 {
15 static class Program 12 internal static class Program
16 { 13 {
17 /// <summary> 14 /// <summary>
18 /// The main entry point for the application. 15 /// The main entry point for the application.
19 /// </summary> 16 /// </summary>
20 [STAThread] 17 [STAThread]
21 static void Main() 18 private static void Main()
22 { 19 {
23 Application.EnableVisualStyles(); 20 Application.EnableVisualStyles();
24 Application.SetCompatibleTextRenderingDefault(false); 21 Application.SetCompatibleTextRenderingDefault(false);
25 Application.Run(new Vassal()); 22 Application.Run(new Vassal());
26 } 23 }
27 } 24 }