Add xml comment

This commit is contained in:
tznind
2024-07-07 21:44:49 +01:00
parent d15f3af388
commit c62cd84b99

View File

@@ -38,6 +38,9 @@ public enum GradientDirection
/// </summary>
public class Gradient
{
/// <summary>
/// The discrete colors that will make up the <see cref="Gradient"/>.
/// </summary>
public List<Color> Spectrum { get; private set; }
private readonly bool _loop;
private readonly List<Color> _stops;