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

游戏引擎

开发平台:

Visual C++

  1. // NewGameSheet.h: interface for the CNewGameSheet class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_NEWGAMESHEET_H__259D2041_AC94_11D6_8156_5254AB37CDC9__INCLUDED_)
  5. #define AFX_NEWGAMESHEET_H__259D2041_AC94_11D6_8156_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "changeBar.h"
  10. #include "ViewBox.h"
  11. #include "SelectBox.h"
  12. class CNewGameSheet  
  13. {
  14. public:
  15. CNewGameSheet();
  16. virtual ~CNewGameSheet();
  17. bool InitSheet();
  18. int  RenderSheet();
  19. int  GetMissionSelect();
  20. int    m_iSelect;
  21. bool   m_bActive;
  22. private:
  23. void UpdateSheet();
  24. void DrawBackground();
  25. void   DrawRectangle(int x0,int x1,int y0,int y1);
  26. CGraphButton  m_cButton[3];
  27. CSelectBox    m_cMissionSelectBox;
  28. CViewBox      m_cMissionViewBox;
  29. CChangeBar    m_cSketchBar;
  30. };
  31. #endif // !defined(AFX_NEWGAMESHEET_H__259D2041_AC94_11D6_8156_5254AB37CDC9__INCLUDED_)