diff options
Diffstat (limited to 'src/ChatColor.cpp')
-rw-r--r-- | src/ChatColor.cpp | 73 |
1 files changed, 46 insertions, 27 deletions
diff --git a/src/ChatColor.cpp b/src/ChatColor.cpp index 73658408b..9641b8413 100644 --- a/src/ChatColor.cpp +++ b/src/ChatColor.cpp @@ -2,31 +2,50 @@ #include "ChatColor.h" -const char * cChatColor::Color = "\xc2\xa7"; // The paragraph / section symbol in UTF-8 -const char * cChatColor::Delimiter = "\xc2\xa7"; // The paragraph / section symbol in UTF-8 -const char * cChatColor::Black = "\xc2\xa7""0"; -const char * cChatColor::Navy = "\xc2\xa7""1"; -const char * cChatColor::Green = "\xc2\xa7""2"; -const char * cChatColor::Blue = "\xc2\xa7""3"; -const char * cChatColor::Red = "\xc2\xa7""4"; -const char * cChatColor::Purple = "\xc2\xa7""5"; -const char * cChatColor::Gold = "\xc2\xa7""6"; -const char * cChatColor::LightGray = "\xc2\xa7""7"; -const char * cChatColor::Gray = "\xc2\xa7""8"; -const char * cChatColor::DarkPurple = "\xc2\xa7""9"; -const char * cChatColor::LightGreen = "\xc2\xa7""a"; -const char * cChatColor::LightBlue = "\xc2\xa7""b"; -const char * cChatColor::Rose = "\xc2\xa7""c"; -const char * cChatColor::LightPurple = "\xc2\xa7""d"; -const char * cChatColor::Yellow = "\xc2\xa7""e"; -const char * cChatColor::White = "\xc2\xa7""f"; - -const char * cChatColor::Random = "\xc2\xa7""k"; -const char * cChatColor::Bold = "\xc2\xa7""l"; -const char * cChatColor::Strikethrough = "\xc2\xa7""m"; -const char * cChatColor::Underlined = "\xc2\xa7""n"; -const char * cChatColor::Italic = "\xc2\xa7""o"; -const char * cChatColor::Plain = "\xc2\xa7""r"; - - +const char * cChatColor::Color = "\xc2\xa7"; // The paragraph / section symbol in UTF-8 +const char * cChatColor::Delimiter = "\xc2\xa7"; // The paragraph / section symbol in UTF-8 +const char * cChatColor::Black = "\xc2\xa7" + "0"; +const char * cChatColor::Navy = "\xc2\xa7" + "1"; +const char * cChatColor::Green = "\xc2\xa7" + "2"; +const char * cChatColor::Blue = "\xc2\xa7" + "3"; +const char * cChatColor::Red = "\xc2\xa7" + "4"; +const char * cChatColor::Purple = "\xc2\xa7" + "5"; +const char * cChatColor::Gold = "\xc2\xa7" + "6"; +const char * cChatColor::LightGray = "\xc2\xa7" + "7"; +const char * cChatColor::Gray = "\xc2\xa7" + "8"; +const char * cChatColor::DarkPurple = "\xc2\xa7" + "9"; +const char * cChatColor::LightGreen = "\xc2\xa7" + "a"; +const char * cChatColor::LightBlue = "\xc2\xa7" + "b"; +const char * cChatColor::Rose = "\xc2\xa7" + "c"; +const char * cChatColor::LightPurple = "\xc2\xa7" + "d"; +const char * cChatColor::Yellow = "\xc2\xa7" + "e"; +const char * cChatColor::White = "\xc2\xa7" + "f"; +const char * cChatColor::Random = "\xc2\xa7" + "k"; +const char * cChatColor::Bold = "\xc2\xa7" + "l"; +const char * cChatColor::Strikethrough = "\xc2\xa7" + "m"; +const char * cChatColor::Underlined = "\xc2\xa7" + "n"; +const char * cChatColor::Italic = "\xc2\xa7" + "o"; +const char * cChatColor::Plain = "\xc2\xa7" + "r"; |