9 lines
139 B
C
9 lines
139 B
C
|
|
#ifndef PALETTE_H
|
||
|
|
#define PALETTE_H
|
||
|
|
|
||
|
|
void palette_init(void);
|
||
|
|
void palette_reset(void);
|
||
|
|
int palette_colorIdx(int r, int g, int b);
|
||
|
|
|
||
|
|
#endif
|