Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CoolerMasterLedId"/> class.
 /// </summary>
 /// <param name="device">The <see cref="IRGBDevice"/> the <see cref="ILedId"/> belongs to.</param>
 /// <param name="ledId">The <see cref="CoolerMasterLedId"/> of the represented <see cref="Led"/>.</param>
 /// <param name="row">The row in the mapping table of the device.</param>
 /// <param name="column">The column in the mapping table of the device.</param>
 public CoolerMasterLedId(IRGBDevice device, CoolerMasterLedIds ledId, int row, int column)
 {
     this.Device = device;
     this.LedId  = ledId;
     this.Row    = row;
     this.Column = column;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CoolerMasterLedId"/> class.
 /// </summary>
 /// <param name="device">The <see cref="IRGBDevice"/> the <see cref="ILedId"/> belongs to.</param>
 /// <param name="ledId">The <see cref="CoolerMasterLedId"/> of the represented <see cref="Led"/>.</param>
 public CoolerMasterLedId(IRGBDevice device, CoolerMasterLedIds ledId)
 {
     this.Device = device;
     this.LedId  = ledId;
 }