mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
12 lines
260 B
C
12 lines
260 B
C
#ifndef POKEHEARTGOLD_CONSTANTS_RGB_H
|
|
#define POKEHEARTGOLD_CONSTANTS_RGB_H
|
|
|
|
#include <nitro/gx/gxcommon.h>
|
|
|
|
#define RGB(r,g,b) (GX_RGB(r,g,b))
|
|
|
|
#define RGB_BLACK RGB(0,0,0)
|
|
#define RGB_WHITE RGB(31,31,31)
|
|
|
|
#endif //POKEHEARTGOLD_CONSTANTS_RGB_H
|