home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / XenonSource.exe / xenon / includes / scoreentrystate.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  824 b   |  43 lines

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    CScoreEntryState
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    06/05/00
  8. //
  9. // Base:    CGameState
  10. //
  11. // Derived:    None
  12. //
  13. //-------------------------------------------------------------
  14.  
  15. #ifndef _INCLUDE_SCOREENTRYSTATE_H
  16. #define _INCLUDE_SCOREENTRYSTATE_H
  17.  
  18. #include "gamestate.h"
  19.  
  20. //-------------------------------------------------------------
  21.  
  22. class CScoreEntryState : public CGameState
  23. {
  24.     private:
  25.         static CScoreEntryState *m_instance;
  26.  
  27.         static char *m_congratulation_messages[NUMBER_OF_SCORE_ENTRIES];
  28.  
  29.     public:
  30.         CScoreEntryState();
  31.         ~CScoreEntryState();
  32.  
  33.         static CGameState *instance();
  34.  
  35.         bool create();
  36.         bool update();
  37. };
  38.  
  39. //-------------------------------------------------------------
  40.  
  41. #endif
  42.  
  43.