From 75f5db75a347995fe351235fa94fb657efb2881d Mon Sep 17 00:00:00 2001 From: Patrik Gornicz Date: Wed, 16 Jul 2008 22:47:21 -0400 Subject: [PATCH] colors added --- src/graphics/colors.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/graphics/colors.h diff --git a/src/graphics/colors.h b/src/graphics/colors.h new file mode 100644 index 0000000..e502735 --- /dev/null +++ b/src/graphics/colors.h @@ -0,0 +1,5 @@ + +static float const cRed[] = {1.0, 0.0, 0.0}; +static float const cGreen[] = {0.0, 1.0, 0.0}; +static float const cBlue[] = {0.0, 0.0, 1.0}; +static float const cYellow[] = {1.0, 1.0, 0.0}; -- 2.10.2