view Main.cs @ 0:620c62ba4d07

Re #242: Qt# GUI * Attempt to import to correct location
author IBBoard <dev@ibboard.co.uk>
date Sat, 23 Jan 2010 17:05:18 +0000
parents
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 ();
		}
	}
}