mirror of
https://github.com/pret/pmd-red.git
synced 2026-09-08 17:15:51 -05:00
start working on bg pal struct
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
#ifndef GUARD_RGB_H
|
||||
#define GUARD_RGB_H
|
||||
|
||||
typedef struct RGB
|
||||
typedef struct Rgb32
|
||||
{
|
||||
// IDK which is R G B
|
||||
u8 unk0;
|
||||
u8 unk1;
|
||||
u8 unk2;
|
||||
} RGB;
|
||||
u8 r;
|
||||
u8 g;
|
||||
u8 b;
|
||||
} Rgb32;
|
||||
|
||||
typedef struct Palette32
|
||||
{
|
||||
Rgb32 pal[16];
|
||||
} Palette32;
|
||||
|
||||
#endif // GUARD_RGB_H
|
||||
|
||||
Reference in New Issue
Block a user