summaryrefslogtreecommitdiff
path: root/include/mcolor.h
blob: cd91923894ff066e9276ee09cf7975946f15674a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __MCOLOR_H__
#define __MCOLOR_H__

#include <Exceptions.h>
#include <Color.h>

namespace mogltk {
    class ColorP : public Base {
      public:
          ColorP(const Color &);
	  ColorP(Uint8, Uint8, Uint8, Uint8);
	static Color Min;
	static Color Max;
        Color c;
    };
};

#endif