diff api/Objects/Army.cs @ 59:3fa4658c50c6

Re #61 - Complete structure of WarFoundry API objects * Allow units to have zero members to handle meta-units where all members are individuals "contained" by the unit
author IBBoard <dev@ibboard.co.uk>
date Thu, 09 Apr 2009 13:55:46 +0000
parents e53ed2d613a1
children 3ea0ab04352b
line wrap: on
line diff
--- a/api/Objects/Army.cs	Tue Apr 07 15:28:06 2009 +0000
+++ b/api/Objects/Army.cs	Thu Apr 09 13:55:46 2009 +0000
@@ -31,7 +31,7 @@
 		public event DoubleValChangedDelegate PointsValueChanged;
 		private DoubleValChangedDelegate PointsValueChangedMethod;
 		
-		public Army(Race race, string armyName, int maxArmyPoints) : this(race, armyName, maxArmyPoints, null/*, factory*/)
+		public Army(Race race, string armyName, int maxArmyPoints) : this(race, armyName, maxArmyPoints, null)
 		{
 		}