diff 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
line wrap: on
line diff
--- a/Util/UnitEquipmentChoice.cs	Sat Jun 27 18:20:22 2009 +0000
+++ b/Util/UnitEquipmentChoice.cs	Sat Jun 27 19:01:59 2009 +0000
@@ -1,40 +1,40 @@
-// This file (UnitEquipmentChoice.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 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.
-
-using System;
-using System.Collections;
-using IBBoard.WarFoundry.API.Objects;
-
-
-
-namespace IBBoard.WarFoundry.GUI.WinForms.Util
-{
-    /// <summary>
-    /// A helper object that holds an equipment choice for a unit.
-    /// </summary>
-
-    public class UnitEquipmentChoice
-    {
-        private Unit unit;
-		private UnitEquipmentItem item;
-
-        private static Hashtable equipObjs = new Hashtable();
-
-        public UnitEquipmentChoice(Unit unit, UnitEquipmentItem unitItem)
-        {
-            this.unit = unit;
-            item = unitItem;
-        }
-
-        public override string ToString()
-        {
-            return String.Format("{0} (For {1} at {2}pts each)", item.Name, UnitEquipmentItem.FormatEquipmentAmount(item, unit.GetEquipmentAmount(item)), item.Cost);
-        }
-
-        public UnitEquipmentItem Item
-        {
-            get { return item; }
-        }
-    }
+// This file (UnitEquipmentChoice.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 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.
+
+using System;
+using System.Collections;
+using IBBoard.WarFoundry.API.Objects;
+
+
+
+namespace IBBoard.WarFoundry.GUI.WinForms.Util
+{
+    /// <summary>
+    /// A helper object that holds an equipment choice for a unit.
+    /// </summary>
+
+    public class UnitEquipmentChoice
+    {
+        private Unit unit;
+		private UnitEquipmentItem item;
+
+        private static Hashtable equipObjs = new Hashtable();
+
+        public UnitEquipmentChoice(Unit unit, UnitEquipmentItem unitItem)
+        {
+            this.unit = unit;
+            item = unitItem;
+        }
+
+        public override string ToString()
+        {
+            return String.Format("{0} (For {1} at {2}pts each)", item.Name, UnitEquipmentItem.FormatEquipmentAmount(item, unit.GetEquipmentAmount(item)), item.Cost);
+        }
+
+        public UnitEquipmentItem Item
+        {
+            get { return item; }
+        }
+    }
 }
\ No newline at end of file