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

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

#endif