view Main.cs @ 1:4ff09911ef64

Re #242: Create Qt# UI for WarFoundry * Convert to Visual Studio 2005 project * Add Solution file * Update compile script to be more readable and to check whether rebuilds are needed
author IBBoard <dev@ibboard.co.uk>
date Sat, 23 Jan 2010 19:55:54 +0000
parents 620c62ba4d07
children 1bd8febee385
line wrap: on
line source

// This file (Main.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
using System;
using Qyoto;
namespace IBBoard.WarFoundry.GUI.QtSharp
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			new QApplication (args);
			
			MainWindow win = new MainWindow ();
			win.Show ();
			
			QApplication.Exec ();
		}
	}
}