mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 13:49:58 +01:00
11 lines
354 B
C
11 lines
354 B
C
#include "goom_graphic.h"
|
|
|
|
const Color BLACK = { 0, 0, 0 };
|
|
const Color WHITE = { 0xff, 0xff, 0xff };
|
|
const Color RED = { 0xff, 0x05, 0x05 };
|
|
const Color GREEN = { 0x05, 0xff, 0x05 };
|
|
const Color BLUE = { 0x05, 0x05, 0xff };
|
|
const Color YELLOW = { 0xff, 0xff, 0x33 };
|
|
const Color ORANGE = { 0xff, 0xcc, 0x05 };
|
|
const Color VIOLET = { 0x55, 0x05, 0xff };
|