summaryrefslogtreecommitdiffstats
path: root/src/ChatColor.h
blob: 643c4d5d87d13357d3faf343d788f747a90ba43d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

#pragma once





// tolua_begin
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;

	// 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;

};

// tolua_end