// Common, group Output
// Copyright Alexander Liss

#ifndef __RGB_H__
#define __RGB_H__


	// RGB

struct RGB
{ 
	float r,g,b;
	RGB():r(0),g(0),b(0){}
	RGB(float R,float G,float B):r(R),g(G),b(B){}	
};


#endif