mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-25 15:42:51 -05:00
12 lines
281 B
C
12 lines
281 B
C
#ifndef POKEDIAMOND_CONSTANTS_RGB_H
|
|
#define POKEDIAMOND_CONSTANTS_RGB_H
|
|
|
|
#include "GXcommon.h" //todo change the name of this thing
|
|
|
|
#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 // POKEDIAMOND_CONSTANTS_RGB_H
|