dd7df28844
- Changed std::string fields to const char-pointers in order to wipe out potential issues with static initialization and global destructors - Deprecated cChatColor::Color() because the name does not match the value
33 lines
1.5 KiB
C++
33 lines
1.5 KiB
C++
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
#include "ChatColor.h"
|
|
|
|
const char * cChatColor::Color = "\xc2\xa7"; // or in other words: "§" in UTF-8
|
|
const char * cChatColor::Delimiter = "\xc2\xa7"; // or in other words: "§" 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";
|
|
|
|
|
|
|