Ejemplo n.º 1
0
        protected LightBuilder(LightBuilder other)
            : base(other)
        {
            Guard.NotNull(other, nameof(other));

            this.Color     = other.Color;
            this.Intensity = other.Intensity;
        }
Ejemplo n.º 2
0
 protected LightBuilder(LightBuilder other)
 {
     this.Color     = other.Color;
     this.Intensity = other.Intensity;
 }
Ejemplo n.º 3
0
 public LightContent(LightBuilder light)
 {
     _Light = light;
 }