00001 #ifndef SCREEN_H_INCLUDED 00002 #define SCREEN_H_INCLUDED 00003 00004 class Screen{ 00005 public: 00006 static float width; 00007 static float height; 00008 00009 Screen(); 00010 ~Screen(); 00011 }; 00012 00013 #endif