diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 08:51:53 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 08:51:53 -0500 |
commit | efcf1a88cd0d0bee3973705b5975827be97f5a3a (patch) | |
tree | f458ac0c456e09ed236c7c93379a371617325ead /src/texture.cpp | |
parent | cbd154a4834f56146dbe744ee2d2c6dccc04c5cb (diff) |
particles, rain
Diffstat (limited to 'src/texture.cpp')
-rw-r--r-- | src/texture.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/texture.cpp b/src/texture.cpp index 640b06e..da39ec0 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -8,11 +8,13 @@ namespace Colors ColorTex white; ColorTex black; ColorTex red; + ColorTex blue; void init(void) { white = ColorTex(Color(255, 255, 255)); - black = ColorTex(Color(0, 0, 0)); - red = ColorTex(Color(255, 0, 0)); + black = ColorTex(Color(0, 0, 0 )); + red = ColorTex(Color(255, 0, 0 )); + blue = ColorTex(Color(0, 0, 255)); } } |