/// <summary> /// Constructs a <see cref="Marquee"/> effect. /// </summary> /// <param name="Color">The <see cref="Color"/> of the effect.</param> /// <param name="Direction">The <see cref="Direction"/> of the effect.</param> /// <param name="LSS">The <see cref="LSS"/> param to apply.</param> public Marquee(Color Color, Direction Direction, LSS LSS) { this._Color = Color; this.Param1 = Direction; this.Param2 = LSS; }
/// <summary> /// Constructs a <see cref="Marquee"/> effect. /// </summary> /// <param name="Color">The <see cref="Color"/> of the effect.</param> /// <param name="LSS">The <see cref="LSS"/> param to apply.</param> public Marquee(Color Color, LSS LSS) { this._Color = Color; this.Param2 = LSS; }