Skip to content
Snippets Groups Projects
pixel.h 211 B
Newer Older
  • Learn to ignore specific revisions
  • Jean-Marc's avatar
    Jean-Marc committed
    #ifndef _PIXEL_H
    #define _PIXEL_H
    
    class Pixel
    {
        public :
        unsigned int r;
        unsigned int g;
        unsigned int b;
    
        Pixel();
        Pixel(int ro, int ve, int bl);
        Pixel operator=(Pixel p);
    };
    
    #endif