corrade-vassal – Blame information for rev 13

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 zed 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2015 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6  
7 using System;
8 using System.Windows.Forms;
9  
10 namespace Vassal
11 {
13 eva 12 internal static class Program
2 zed 13 {
14 /// <summary>
13 eva 15 /// The main entry point for the application.
2 zed 16 /// </summary>
17 [STAThread]
13 eva 18 private static void Main()
2 zed 19 {
20 Application.EnableVisualStyles();
21 Application.SetCompatibleTextRenderingDefault(false);
22 Application.Run(new Vassal());
23 }
24 }
13 eva 25 }