00001 #ifndef __SCOREMANAGER_H 00002 #define __SCOREMANAGER_H 00003 00004 class ScoreManager 00005 { 00006 private: 00007 int score; 00008 public: 00009 ScoreManager(); 00010 ~ScoreManager(); 00011 void ChangeScore( int delta ); 00012 void Reset(); 00013 void DrawScore( int x, int y, Display *display); 00014 }; 00015 00016 #endif /* __SCOREMANAGER_H */