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

游戏引擎

开发平台:

Visual C++

  1. // SkyBox.h: interface for the CSkyBox class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SKYBOX_H__343D3EC5_8632_44AC_AA26_8F63641F3D68__INCLUDED_)
  5. #define AFX_SKYBOX_H__343D3EC5_8632_44AC_AA26_8F63641F3D68__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CSkyBox  
  10. {
  11. public:
  12. CSkyBox();
  13. virtual ~CSkyBox();
  14. bool InitSkyBox(int XLenght=100, int YLenght=100,int ZLenght=100,
  15.       int CenterX=0,int CenterY=0,int CenterZ=0);
  16. void DrawSkyBox();
  17. protected:
  18. int m_XLength,m_YLength,m_ZLength;
  19. int m_CenterX,m_CenterY,m_CenterZ;
  20. unsigned int texSky[5];
  21. };
  22. #endif // !defined(AFX_SKYBOX_H__343D3EC5_8632_44AC_AA26_8F63641F3D68__INCLUDED_)