You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
277 B
22 lines
277 B
3 years ago
|
#ifndef BASETINTMAP_H
|
||
|
#define BASETINTMAP_H
|
||
|
|
||
|
#include <QtCore>
|
||
|
|
||
|
class BaseTintMap
|
||
|
{
|
||
|
private:
|
||
|
quint8 _r;
|
||
|
quint8 _g;
|
||
|
quint8 _b;
|
||
|
|
||
|
public:
|
||
|
BaseTintMap();
|
||
|
|
||
|
void setTintColor(quint8 r, quint8 g, quint8 b);
|
||
|
QString toString();
|
||
|
QList<quint8> value();
|
||
|
};
|
||
|
|
||
|
#endif //BASETINTMAP_H
|