Added XML documentation.

This commit is contained in:
AkjaHAsLk1IALk0MasH 2023-06-06 16:21:52 +07:00
parent 121afa963c
commit 73e2440043

View file

@ -166,6 +166,9 @@ namespace TShockAPI
/// </summary>
public virtual byte B { get; set; } = 255;
/// <summary>
/// Simplifies work with the <see cref="R"/>, <see cref="G"/>, <see cref="B"/> properties.
/// </summary>
public virtual Color Color
{
get => new Color(R, G, B);