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

游戏引擎

开发平台:

Visual C++

  1. // Bush.h: interface for the CBush class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_BUSH_H__52F60941_9DAC_11D6_813E_5254AB37CDC9__INCLUDED_)
  5. #define AFX_BUSH_H__52F60941_9DAC_11D6_813E_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "structdef.h"
  10. class CBush  
  11. {
  12. public:
  13. CBush();
  14. virtual ~CBush();
  15.     bool InitBush(int type);
  16. void RenderBush(VERTEX position);
  17. protected:
  18.     void DrawBush();
  19.     void DrawLichen();
  20. void DrawCross(float size,float bias,int angle,float tex_x1,float tex_x2,float tex_y1,float tex_y2);
  21.  
  22. float m_size;
  23. float m_height;
  24. int   m_type;
  25.     unsigned int texBush;
  26. };
  27. #endif // !defined(AFX_BUSH_H__52F60941_9DAC_11D6_813E_5254AB37CDC9__INCLUDED_)