pokediamond/include/constants/rgb.h
2024-09-30 18:18:30 +01:00

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