Removed RGB properties
This commit is contained in:
parent
a917beaca0
commit
dc81791134
1 changed files with 3 additions and 3 deletions
|
|
@ -156,15 +156,15 @@ namespace TShockAPI
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The group's chat color red byte.
|
/// The group's chat color red byte.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual byte R { get; set; } = 255;
|
public byte R = 255;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The group's chat color green byte.
|
/// The group's chat color green byte.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual byte G { get; set; } = 255;
|
public byte G = 255;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The group's chat color blue byte.
|
/// The group's chat color blue byte.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual byte B { get; set; } = 255;
|
public byte B = 255;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Simplifies work with the <see cref="R"/>, <see cref="G"/>, <see cref="B"/> properties.
|
/// Simplifies work with the <see cref="R"/>, <see cref="G"/>, <see cref="B"/> properties.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue