Removed RGB properties

This commit is contained in:
AkjaHAsLk1IALk0MasH 2023-06-08 12:41:11 +07:00
parent a917beaca0
commit dc81791134

View file

@ -156,15 +156,15 @@ namespace TShockAPI
/// <summary>
/// The group's chat color red byte.
/// </summary>
public virtual byte R { get; set; } = 255;
public byte R = 255;
/// <summary>
/// The group's chat color green byte.
/// </summary>
public virtual byte G { get; set; } = 255;
public byte G = 255;
/// <summary>
/// The group's chat color blue byte.
/// </summary>
public virtual byte B { get; set; } = 255;
public byte B = 255;
/// <summary>
/// Simplifies work with the <see cref="R"/>, <see cref="G"/>, <see cref="B"/> properties.