comparison 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
comparison
equal deleted inserted replaced
32:e405b43a405b 33:be876c03054f
1 // This file (UnitWidget.cs) is a part of the IBBoard.WarFoundry.GUI.QtSharp project and is copyright 2010 IBBoard
2 //
3 // // 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.
4 using System;
5 using Qyoto;
6 using IBBoard.WarFoundry.API.Objects;
7 namespace IBBoard.WarFoundry.GUI.QtSharp.Widgets
8 {
9 public class UnitWidget : QWidget
10 {
11 public UnitWidget(Unit unit)
12 {
13 }
14 }
15 }
16