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

游戏引擎

开发平台:

Visual C++

  1. // GunFire.h: interface for the CGunFire class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GUNFIRE_H__EFBD3921_B9D0_11D6_90D9_5254AB37CDC9__INCLUDED_)
  5. #define AFX_GUNFIRE_H__EFBD3921_B9D0_11D6_90D9_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CGunFire  
  10. {
  11. public:
  12. CGunFire();
  13. virtual ~CGunFire();
  14. void  InitGunFire(float minSize=0.8f,float maxSize=0.5f);
  15. void  DrawGunFire();
  16. private:
  17. float         m_maxFireSize;
  18. float         m_minFireSize;
  19. float         m_gunFireSize;
  20. float         m_guFireRotate;
  21. float         m_addAngle;
  22. float         m_fireGrowth;
  23. unsigned int  m_texGunFire;
  24. };
  25. #endif // !defined(AFX_GUNFIRE_H__EFBD3921_B9D0_11D6_90D9_5254AB37CDC9__INCLUDED_)