Exemplo n.º 1
0
 public FleetIconInfo(IconSection section, params IconSelectionCriteria[] criteria)
     : base(section, criteria) {
 }
Exemplo n.º 2
0
 /// <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();
 }