view Widgets/UnitWidget.cs @ 33:be876c03054f

Re #245: Create unit tab implementation * Add stub widget * Record which unit tabs are open * Remove two default tabs
author IBBoard <dev@ibboard.co.uk>
date Sat, 07 Aug 2010 15:40:37 +0000
parents
children c3c64e139e5f
line wrap: on
line source

//  This file (UnitWidget.cs) is a part of the IBBoard.WarFoundry.GUI.QtSharp project and is copyright 2010 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;
using IBBoard.WarFoundry.API.Objects;
namespace IBBoard.WarFoundry.GUI.QtSharp.Widgets
{
	public class UnitWidget : QWidget
	{
		public UnitWidget(Unit unit)
		{
		}
	}
}