Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-09 18:40:31 +0000
committerStijn Buys <ingar@osirion.org>2008-03-09 18:40:31 +0000
commit517d35b2bbaeb3ee4b7e29301cd41bb58628bf3e (patch)
tree5473c128e64029b35ecfe22c9e48628c02af5407 /src/math/color.h
parent289bf4b622b95b794e438ac257d75ea437e3e023 (diff)
parse of light entities in models
Diffstat (limited to 'src/math/color.h')
-rw-r--r--src/math/color.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/math/color.h b/src/math/color.h
index 078faaa..51b415f 100644
--- a/src/math/color.h
+++ b/src/math/color.h
@@ -37,6 +37,11 @@ public:
static const Color Green() { return Color(0.0f,1.0f,0.0f); };
static const Color Blue() { return Color(0.0f, 0.0f, 1.0f); };
static const Color Yellow() { return Color(1.0f, 1.0f, 0.0f); };
+
+ float &r;
+ float &g;
+ float &b;
+ float &a;
private:
void normalize();