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

射击游戏

开发平台:

Visual C++

  1. // Resistance.h: interface for the Resistance class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PRESISTANCE_H__3FE67DB0_8F2E_44A0_ACBE_4440913DF083__INCLUDED_)
  5. #define AFX_PRESISTANCE_H__3FE67DB0_8F2E_44A0_ACBE_4440913DF083__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NodeObject.h"
  10. #include "DynamicsObject.h"
  11. class P_Resistance : 
  12. public NodeObject, 
  13. public DynamicsObject  
  14. {
  15. public:
  16. P_Resistance(P_Resistance& src);
  17. P_Resistance(TCHAR* name);
  18. void PreDraw();
  19. void Apply();
  20. virtual ~P_Resistance();
  21. };
  22. #endif // !defined(AFX_RESISTANCE_H__3FE67DB0_8F2E_44A0_ACBE_4440913DF083__INCLUDED_)