summaryrefslogtreecommitdiff
path: root/include/glcolor.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/glcolor.h')
-rw-r--r--include/glcolor.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/glcolor.h b/include/glcolor.h
new file mode 100644
index 0000000..8296451
--- /dev/null
+++ b/include/glcolor.h
@@ -0,0 +1,18 @@
+#ifndef __GLCOLOR_H__
+#define __GLCOLOR_H__
+
+#include <Exceptions.h>
+#include <Color.h>
+
+namespace mogltk {
+ class ColorP : public Base {
+ public:
+ ColorP(const Color &);
+ ColorP(Uint8, Uint8, Uint8, Uint8);
+ void Bind();
+ private:
+ Color c;
+ };
+};
+
+#endif