The-Powder-Toy/src/interface/Colour.h
2012-01-23 22:53:57 +00:00

21 lines
247 B
C++

#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