This commit is contained in:
Attila BODY 2018-12-16 21:47:18 +01:00
parent 8eb06c8eab
commit 7abafe7c8c
3 changed files with 98 additions and 96 deletions

View file

@ -24,4 +24,14 @@ typedef struct {
}
#endif
#ifdef __cplusplus
struct Pixel : public Pixel_t {
Pixel(uint8_t _r, uint8_t _g, uint8_t _b) {
g =_g;
r = _r;
b = _b;
}
};
#endif
#endif /* PIXEL_H_ */