Skip to content
Snippets Groups Projects
Pixel.h 178 B
Newer Older
ABBAS's avatar
ABBAS committed
#ifndef _PIXEL_H
#define _PIXEL_H

class Pixel
{	public:
		unsigned char r,g,b;
		Pixel();
		~Pixel();
		Pixel(unsigned char nr,unsigned char ng,unsigned char nb);
};




#endif