summaryrefslogtreecommitdiff
path: root/src/GudhUI/view/Color.h
blob: a63456cb37d461cb17cbabc81b730b9daa19d97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Color.h
 *
 *  Created on: Aug 26, 2014
 *      Author: dsalinas
 */

#ifndef COLOR_H_
#define COLOR_H_



struct Color{
	double r;
	double g;
	double b;
	Color(double r_,double g_,double b_):r(r_),g(g_),b(b_){}
};


#endif /* COLOR_H_ */