summaryrefslogtreecommitdiff
path: root/lib/mcolor.cc
blob: 91c8a1d91d51c230e31bca53e8b4494f2c1299bf (plain)
1
2
3
4
5
6
7
8
9
10
#include <SDL.h>
#include "mcolor.h"

Color mogltk::ColorP::Min(0, 0, 0, 0), mogltk::ColorP::Max = WHITE;

mogltk::ColorP::ColorP(const Color & ac) : c(ac) {
}

mogltk::ColorP::ColorP(Uint8 ar, Uint8 ag, Uint8 ab, Uint8 aa) : c(ar, ag, ab, aa) {
}