#ifndef RGB_H
#define RGB_H

struct RGB
{
  unsigned char R,G,B;
};

#endif
