Exemple #1
0
 private void CopyMembers(LightMode other, Light light)
 {
     this.id         = other.id;
     this.light      = light;
     this.name       = other.name;
     this.time       = other.time;
     this.flash      = other.flash;
     this.brightness = other.brightness;
     this.active     = other.active;
 }
Exemple #2
0
 public LightMode(LightMode other, Light light)
 {
     CopyMembers(other, light);
 }