mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-30 22:14:56 -05:00
13 lines
195 B
C
13 lines
195 B
C
#ifndef GUARD_RGB_H
|
|
#define GUARD_RGB_H
|
|
|
|
typedef struct RGB
|
|
{
|
|
u8 r;
|
|
u8 g;
|
|
u8 b;
|
|
u8 unk4; // Never read, always 0x80. Unused transparency/alpha flag?
|
|
} RGB;
|
|
|
|
#endif // GUARD_RGB_H
|