Cuberite
A lightweight, fast and extensible game server for Minecraft
ChatColor.cpp
Go to the documentation of this file.
1 #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
2 
3 #include "ChatColor.h"
4 
5 const char * cChatColor::Color = "\xc2\xa7"; // or in other words: "§" in UTF-8
6 const char * cChatColor::Delimiter = "\xc2\xa7"; // or in other words: "§" in UTF-8
7 const char * cChatColor::Black = "\xc2\xa7""0";
8 const char * cChatColor::Navy = "\xc2\xa7""1";
9 const char * cChatColor::Green = "\xc2\xa7""2";
10 const char * cChatColor::Blue = "\xc2\xa7""3";
11 const char * cChatColor::Red = "\xc2\xa7""4";
12 const char * cChatColor::Purple = "\xc2\xa7""5";
13 const char * cChatColor::Gold = "\xc2\xa7""6";
14 const char * cChatColor::LightGray = "\xc2\xa7""7";
15 const char * cChatColor::Gray = "\xc2\xa7""8";
16 const char * cChatColor::DarkPurple = "\xc2\xa7""9";
17 const char * cChatColor::LightGreen = "\xc2\xa7""a";
18 const char * cChatColor::LightBlue = "\xc2\xa7""b";
19 const char * cChatColor::Rose = "\xc2\xa7""c";
20 const char * cChatColor::LightPurple = "\xc2\xa7""d";
21 const char * cChatColor::Yellow = "\xc2\xa7""e";
22 const char * cChatColor::White = "\xc2\xa7""f";
23 
24 const char * cChatColor::Random = "\xc2\xa7""k";
25 const char * cChatColor::Bold = "\xc2\xa7""l";
26 const char * cChatColor::Strikethrough = "\xc2\xa7""m";
27 const char * cChatColor::Underlined = "\xc2\xa7""n";
28 const char * cChatColor::Italic = "\xc2\xa7""o";
29 const char * cChatColor::Plain = "\xc2\xa7""r";
30 
31 
32 
static const char * Bold
Definition: ChatColor.h:37
static const char * LightGreen
Definition: ChatColor.h:27
static const char * Gray
Definition: ChatColor.h:25
static const char * Gold
Definition: ChatColor.h:23
static const char * Strikethrough
Definition: ChatColor.h:38
static const char * Delimiter
Definition: ChatColor.h:12
static const char * Red
Definition: ChatColor.h:21
static const char * Rose
Definition: ChatColor.h:29
static const char * Plain
Definition: ChatColor.h:41
static const char * Random
Definition: ChatColor.h:36
static const char * LightGray
Definition: ChatColor.h:24
static const char * Yellow
Definition: ChatColor.h:31
static const char * Navy
Definition: ChatColor.h:18
static const char * Purple
Definition: ChatColor.h:22
static const char * DarkPurple
Definition: ChatColor.h:26
static const char * LightPurple
Definition: ChatColor.h:30
static const char * Color
Definition: ChatColor.h:15
static const char * Green
Definition: ChatColor.h:19
static const char * Italic
Definition: ChatColor.h:40
static const char * Underlined
Definition: ChatColor.h:39
static const char * White
Definition: ChatColor.h:32
static const char * Blue
Definition: ChatColor.h:20
static const char * Black
Definition: ChatColor.h:17
static const char * LightBlue
Definition: ChatColor.h:28