LaserGun.h
资源名称:g.rar [点击查看]
上传用户:laitongbao
上传日期:2021-02-20
资源大小:8176k
文件大小:1k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // LaserGun.h: interface for the LaserGun class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "includeCGL.h"
  5. #if !defined(AFX_LASERGUN_H__69FF80E9_2867_489E_BE85_944C08BA2CEF__INCLUDED_)
  6. #define AFX_LASERGUN_H__69FF80E9_2867_489E_BE85_944C08BA2CEF__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. class LaserGun  
  11. {
  12. public:
  13. LaserGun(NodeObject* owner,float xoffset);
  14. void Fire(VECTOR3 v0);
  15. virtual ~LaserGun();
  16. int damage;
  17. Particle_Emit* emit;
  18. private:
  19. };
  20. #endif // !defined(AFX_LASERGUN_H__69FF80E9_2867_489E_BE85_944C08BA2CEF__INCLUDED_)