mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-21 06:27:27 -05:00
13 lines
157 B
C
13 lines
157 B
C
#ifndef GUARD_RGB_H
|
|
#define GUARD_RGB_H
|
|
|
|
typedef struct RGB
|
|
{
|
|
// IDK which is R G B
|
|
u8 unk0;
|
|
u8 unk1;
|
|
u8 unk2;
|
|
} RGB;
|
|
|
|
#endif // GUARD_RGB_H
|