summaryrefslogtreecommitdiff
path: root/include/glcolor.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-03-14 13:36:40 +0000
committerpixel <pixel>2003-03-14 13:36:40 +0000
commit2ef9753588b02155faf8bc5a176e4fcf7489dae2 (patch)
treeeaa482c393ca29af35350fd033570989f1fcaff8 /include/glcolor.h
parent700cd603a7ceced2fe8b6a064330d6f88d278dce (diff)
glcolor, first episode
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