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

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _INTRO_01_H
  2. #define _INTRO_01_H
  3. #include "Stdinc.h"
  4. #include "Scene.h"
  5. #include "Mesh.h"
  6. class CIntroScene : public CScene
  7. {
  8.     private:
  9.         unsigned int    m_iNoiseTex;
  10.         CImage*         m_pNoise;
  11.         unsigned char   m_uRandom;
  12.     public:
  13.         bool Initialize();
  14.         bool Cleanup();
  15.         bool Render( int iScreenWidth, int iScreenHeight );
  16.         bool Update();
  17.         CIntroScene();
  18. };
  19. #endif