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

游戏引擎

开发平台:

Visual C++

  1. // PlantManager.h: interface for the CPlantManager class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PLANTMANAGER_H__82047981_9E72_11D6_813F_5254AB37CDC9__INCLUDED_)
  5. #define AFX_PLANTMANAGER_H__82047981_9E72_11D6_813F_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "heightmap.h"
  10. #include "bush.h"
  11. #include "grass.h"
  12. #include "3dtree.h"
  13. #include "pine.h"
  14. class CPlantManager  
  15. {
  16. public:
  17. CPlantManager();
  18. virtual ~CPlantManager();
  19. bool InitPlantManager();
  20. void RenderPlant();
  21. private:
  22. CHeightmap  m_cHmap;
  23. CBush       m_cBush1;
  24. C3DTree     m_cTree1;
  25. C3DTree     m_cTree2;
  26. CPine       m_cPine;
  27. };
  28. #endif // !defined(AFX_PLANTMANAGER_H__82047981_9E72_11D6_813F_5254AB37CDC9__INCLUDED_)