aboutsummaryrefslogtreecommitdiffstats
path: root/src/texture.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-06 08:51:53 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-06 08:51:53 -0500
commitefcf1a88cd0d0bee3973705b5975827be97f5a3a (patch)
treef458ac0c456e09ed236c7c93379a371617325ead /src/texture.cpp
parentcbd154a4834f56146dbe744ee2d2c6dccc04c5cb (diff)
particles, rain
Diffstat (limited to 'src/texture.cpp')
-rw-r--r--src/texture.cpp6
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));
}
}