#ifndef PICINFO_H #define PICINFO_H //This stores "sticker information" I have 54 of these floating around class picinfo { public: int tx, r, c, a; //tx is which of the six images. r and c are 0-2 to indicate which 9th of the image. a is 0, 90, 180, or 270, to indicate which way the sticker is oriented. bool flag; //true if this sticker is in the process of being animated picinfo (int tx, int r, int c, int a); void rotate (int angle); }; #endif