comparison API/Objects/UnitType.cs @ 468:95c1b68a600b

Re #359: Add "only contained" attribute to unit types * Exclude "contained only" units from Race's list of available units
author IBBoard <dev@ibboard.co.uk>
date Sat, 14 Apr 2012 16:57:34 +0100
parents cbeee87dc2d3
children 248df19652f9
comparison
equal deleted inserted replaced
467:750eed630c41 468:95c1b68a600b
588 588
589 public void AddUnitMemberType(UnitMemberType unitMemberType) 589 public void AddUnitMemberType(UnitMemberType unitMemberType)
590 { 590 {
591 unitMemberTypes.Add(unitMemberType.ID, unitMemberType); 591 unitMemberTypes.Add(unitMemberType.ID, unitMemberType);
592 } 592 }
593
594 protected internal bool IsContainedOnly { get; set; }
593 } 595 }
594 } 596 }