OpenRGB/Controllers/SteelSeriesController/color32.h
David Lee Chong Yew 80c8b5f7e5 Added preliminary support for SteelSeries Apex OG family keyboards
Commits squashed by Adam Honse <calcprogrammer1@gmail.com>
2020-11-26 02:29:21 -06:00

20 lines
551 B
C

/*-----------------------------------------*\
| color32.h |
| |
| Simple structure to allow passing of |
| 32-bit color data between classes |
| |
| David Lee (RAMChYLD) 15/11/2020 |
\*-----------------------------------------*/
#ifndef COLOR32_H
#define COLOR32_H
typedef struct{
unsigned char red;
unsigned char green;
unsigned char blue;
unsigned char alpha;
} color32;
#endif // COLOR32_H