diff options
author | Mattes D <github@xoft.cz> | 2014-07-20 20:36:08 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-20 20:36:08 +0200 |
commit | b41bd2da5c8ea5ec3eff200829c70755a903816f (patch) | |
tree | b704bfa5d31f872e8e7836eb0bbb6e21af17ac35 /src/ChatColor.h | |
parent | Revert "Only one instance of server can be started" (diff) | |
parent | ChatColor.h: The @deprecated tag slipped. Oops. (diff) | |
download | cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar.gz cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar.bz2 cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar.lz cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar.xz cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.tar.zst cuberite-b41bd2da5c8ea5ec3eff200829c70755a903816f.zip |
Diffstat (limited to 'src/ChatColor.h')
-rw-r--r-- | src/ChatColor.h | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/src/ChatColor.h b/src/ChatColor.h index 2189fd395..74eb7d5dc 100644 --- a/src/ChatColor.h +++ b/src/ChatColor.h @@ -9,33 +9,35 @@ class cChatColor { public: - static const std::string Color; - static const std::string Delimiter; - - static const std::string Black; - static const std::string Navy; - static const std::string Green; - static const std::string Blue; - static const std::string Red; - static const std::string Purple; - static const std::string Gold; - static const std::string LightGray; - static const std::string Gray; - static const std::string DarkPurple; - static const std::string LightGreen; - static const std::string LightBlue; - static const std::string Rose; - static const std::string LightPurple; - static const std::string Yellow; - static const std::string White; + static const char * Delimiter; + + /** @deprecated use ChatColor::Delimiter instead */ + static const char * Color; + + static const char * Black; + static const char * Navy; + static const char * Green; + static const char * Blue; + static const char * Red; + static const char * Purple; + static const char * Gold; + static const char * LightGray; + static const char * Gray; + static const char * DarkPurple; + static const char * LightGreen; + static const char * LightBlue; + static const char * Rose; + static const char * LightPurple; + static const char * Yellow; + static const char * White; // Styles ( source: http://wiki.vg/Chat ) - static const std::string Random; - static const std::string Bold; - static const std::string Strikethrough; - static const std::string Underlined; - static const std::string Italic; - static const std::string Plain; + static const char * Random; + static const char * Bold; + static const char * Strikethrough; + static const char * Underlined; + static const char * Italic; + static const char * Plain; }; |