00001 #ifndef SCREEN_H 00002 #define SCREEN_H 00003 00004 struct screen { 00005 int height, width; 00006 double minx, maxx; 00007 double miny, maxy; 00008 double time; 00009 }; 00010 00011 #endif