Пример #1
0
        protected LightBuilder(LightBuilder other)
            : base(other)
        {
            Guard.NotNull(other, nameof(other));

            this.Color     = other.Color;
            this.Intensity = other.Intensity;
        }
Пример #2
0
 protected LightBuilder(LightBuilder other)
 {
     this.Color     = other.Color;
     this.Intensity = other.Intensity;
 }
Пример #3
0
 public LightContent(LightBuilder light)
 {
     _Light = light;
 }