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

游戏引擎

开发平台:

Visual C++

  1. // House.h: interface for the CHouse class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_)
  5. #define AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ms3dLoader.h"
  10. #include "smokeParticle.h"
  11. #include "cmath.h"
  12. #include "heightmap.h"
  13. class CHouse  
  14. {
  15. public:
  16. CHouse();
  17. virtual ~CHouse();
  18. bool InitHouse(CMs3dLoader *pModel,CSmokeParticle *pSmoke,
  19.            VERTEX position,float rotateY,unsigned int texid,bool bSmoking);
  20. void DrawHouse();
  21. void DrawSmoke();
  22.     void SetSmoking(bool bSomking);
  23. BOUNDARY_3D      m_bigBoundary;
  24. BOUNDARY_3D      m_smallBoundary;
  25. private:
  26. CMs3dLoader     *m_pModel;
  27. CSmokeParticle  *m_pSmoke;
  28. CHeightmap       m_cHmap;
  29. VERTEX           m_position;
  30. VERTEX           m_somkePos;
  31. float            m_roty;
  32.     CMath            m_cMath;
  33. VERTEX           m_chimneyPos;
  34. unsigned int     m_texID;
  35. bool             m_bSomking;
  36. };
  37. #endif // !defined(AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_)