Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/paint.cc')
-rw-r--r--src/ui/paint.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/paint.cc b/src/ui/paint.cc
index 86058cf..e6f2402 100644
--- a/src/ui/paint.cc
+++ b/src/ui/paint.cc
@@ -17,6 +17,11 @@ namespace ui
// contains the interface between the user interface and the render library
namespace paint {
+void assign_color(const char c, const math::Color &color)
+{
+ render::Text::assign_color(c, color);
+}
+
void color(float r, float g, float b, float a)
{
gl::color(r, g, b, a);