public FleetIconInfo(IconSection section, params IconSelectionCriteria[] criteria) : base(section, criteria) { }
/// <summary> /// Initializes a new instance of the <see cref="AIconInfo"/> class. WARNING: Clients of derived types /// should use IconFactory.MakeInstance() rather than this constructor so the instances can be used in /// equality tests with each other. /// </summary> /// <param name="section">The section of the icon the image should be applied too.</param> /// <param name="criteria">The selection criteria to use in picking the image.</param> public AIconInfo(IconSection section, params IconSelectionCriteria[] criteria) { _section = section; _criteria = criteria; Initialize(); }