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

游戏引擎

开发平台:

Visual C++

  1. // Pine.h: interface for the CPine class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PINE_H__D0CF8261_9E79_11D6_8142_5254AB37CDC9__INCLUDED_)
  5. #define AFX_PINE_H__D0CF8261_9E79_11D6_8142_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "structdef.h"
  10. class CPine  
  11. {
  12. public:
  13. CPine();
  14. virtual ~CPine();
  15.     bool InitPine(int treeType,float treeSize=0.2f);
  16. void RenderPine(VERTEX position);
  17. protected:
  18.     void DrawPine();
  19. void DrawBranch(float width);
  20. float m_szTree;
  21. float m_height;
  22.     unsigned int texTreeBody;
  23. unsigned int texBranch;
  24. };
  25. #endif // !defined(AFX_PINE_H__D0CF8261_9E79_11D6_8142_5254AB37CDC9__INCLUDED_)