Popup.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:0k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _POPUP_H_
  2. #define _POPUP_H_
  3. class CParameters
  4. {
  5.     public:
  6.         // window parameters
  7.         int     m_iWidth;
  8.         int     m_iHeight;
  9.         int     m_iDepth;
  10.         bool    m_bWindowed;
  11.         // demo parameters
  12.         bool    m_bLooped;
  13.         bool    m_bSound;
  14. };
  15. class CPopup
  16. {
  17.     private:
  18.     public:
  19.         CParameters Run();
  20.         CPopup();
  21.         ~CPopup();
  22. };
  23. #endif