summaryrefslogtreecommitdiff
path: root/src/interface/Colour.h
blob: ad7d8a1f00461d888049ff5a0340cfbffb5cfc30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef COLOUR_H
#define COLOUR_H

namespace ui
{
class Colour
{
public:
	unsigned char Red, Green, Blue;
	Colour(unsigned char red, unsigned char green, unsigned char blue):
		Red(red), Green(green), Blue(blue)
	{
	}
	Colour()
	{
	}
};
}

#endif