summaryrefslogtreecommitdiff
path: root/include/glcolor.h
blob: 28ce1f7c2a7e3c77fd86d12e36988c7bfe41a996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
	static Color Min;
	static Color Max;
        Color c;
    };
};

#endif