Mercurial > repos > IBBoard.WarFoundry.GUI.WinForms
annotate Util/UnitEquipmentChoice.cs @ 24:7c366fe55635
* Fix line terminators
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 27 Jun 2009 19:01:59 +0000 |
parents | 19bdbb80999c |
children | 3ceb0efd261f |
rev | line source |
---|---|
24 | 1 // This file (UnitEquipmentChoice.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard. |
2 // | |
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. | |
4 | |
5 using System; | |
6 using System.Collections; | |
7 using IBBoard.WarFoundry.API.Objects; | |
8 | |
9 | |
10 | |
11 namespace IBBoard.WarFoundry.GUI.WinForms.Util | |
12 { | |
13 /// <summary> | |
14 /// A helper object that holds an equipment choice for a unit. | |
15 /// </summary> | |
16 | |
17 public class UnitEquipmentChoice | |
18 { | |
19 private Unit unit; | |
20 private UnitEquipmentItem item; | |
21 | |
22 private static Hashtable equipObjs = new Hashtable(); | |
23 | |
24 public UnitEquipmentChoice(Unit unit, UnitEquipmentItem unitItem) | |
25 { | |
26 this.unit = unit; | |
27 item = unitItem; | |
28 } | |
29 | |
30 public override string ToString() | |
31 { | |
32 return String.Format("{0} (For {1} at {2}pts each)", item.Name, UnitEquipmentItem.FormatEquipmentAmount(item, unit.GetEquipmentAmount(item)), item.Cost); | |
33 } | |
34 | |
35 public UnitEquipmentItem Item | |
36 { | |
37 get { return item; } | |
38 } | |
39 } | |
8
755e60be28be
Re #61 - Complete structure of WarFoundry API objects
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
40 } |