mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-21 22:48:18 -05:00
12 lines
122 B
C
12 lines
122 B
C
#ifndef GUARD_RGB_H
|
|
#define GUARD_RGB_H
|
|
|
|
typedef struct RGB
|
|
{
|
|
u8 r;
|
|
u8 g;
|
|
u8 b;
|
|
} RGB;
|
|
|
|
#endif // GUARD_RGB_H
|