1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 11:02:51 +02:00

Formatting

- Added a documentation comment to each member of `ControlCode`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-24 15:44:59 +02:00
parent 89fbd3adf9
commit 9cd4b910ac

View File

@ -12,17 +12,49 @@ import birchwood.client.exceptions;
*/
public enum ControlCode: char
{
/**
* Reset styling
*/
Reset = '\x0F',
/**
* Bold text styling
*/
Bolden = '\x02',
/**
* Italic text styling
*/
Italic = '\x1D',
/**
* Underlined text styling
*/
Underline = '\x1F',
/**
* Strikethough text styling
*/
Strikethrough = '\x1E',
/**
* Monospace text styling
*/
Monospace = '\x11',
ReverseColors = '\x16', // NOT UNIVERSALLY SUPPORTED
/**
* Reverse colors (NOTE: not universally supported)
*/
ReverseColors = '\x16',
/**
* ASCII color encoding scheme
*/
AsciiColor = '\x03',
/**
* Hex color encoding scheme
*/
HexColor = '\x04'
}