TempMenu.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // TempMenu.h: interface for the CTempMenu class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TEMPMENU_H__5BE0DB84_AF6C_11D6_815B_5254AB37CDC9__INCLUDED_)
  5. #define AFX_TEMPMENU_H__5BE0DB84_AF6C_11D6_815B_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "TempSheet.h"
  10. #include "optionssheet.h"
  11. class CTempMenu  
  12. {
  13. public:
  14. CTempMenu();
  15. virtual ~CTempMenu();
  16. void  RenderMenu();
  17.     bool  LoadMenu();
  18.     void  DeleteMenu();
  19. private:
  20. void   UpdateMenu();
  21. void   DrawCursor();
  22. void   DrawBackGround();
  23.     CTempSheet      *m_cTempSheet;
  24. COptionsSheet   *m_cOptionsSheet;
  25. bool   m_bActivate;
  26. bool   m_bResource;
  27. unsigned int        m_texCursor;
  28. unsigned int        m_texBkg;
  29.     CInput              m_cInput;
  30. };
  31. #endif // !defined(AFX_TEMPMENU_H__5BE0DB84_AF6C_11D6_815B_5254AB37CDC9__INCLUDED_)