start working on bg pal struct

This commit is contained in:
DizzyEggg
2024-11-01 12:40:56 +01:00
parent f0e0a22df2
commit b6efce3120
22 changed files with 178 additions and 163 deletions

View File

@@ -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