jsweeper/src/colour.h

16 lines
172 B
C++

#ifndef COLOUR_H
#define COLOUR_H
struct Colour
{
float r;
float g;
float b;
Colour();
Colour(std::string Code);
std::string ToCode() const;
};
#endif // COLOUR_H