1 #ifndef _SCREEN_PALETTE
2 #define _SCREEN_PALETTE
3 
4 #include <stdint.h>
5 
6 typedef struct {
7     uint8_t data[256][3];
8     unsigned int version;
9 } screen_palette;
10 
11 #endif // _SCREEN_PALETTE
12