Fireworks.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Fireworks.h : main header file for the FIREWORKS application.
  2. #ifndef _DXGUIDE_FIREWORKS__H
  3. #define _DXGUIDE_FIREWORKS__H
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. #ifndef __AFXWIN_H__
  8. #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10. #include "resource.h"
  11. class CFireworksApp : public CDirectXApp
  12. {
  13. public:
  14. CFireworksApp(void);
  15. virtual ~CFireworksApp();
  16. public:
  17. CD3DDevice* m_pD3DDevice;
  18. CD3DMaterial* m_pD3DMaterial;
  19. // add your data here !
  20. CD3DTexture* m_pLakeTexture;
  21. CD3DTexture* m_pFireworkTexture;
  22. public:
  23. // add your function here !
  24. void RenderParticles(void);
  25. public:
  26. virtual bool GetDXInitSettings(void);
  27. virtual bool InitDXObjects(void);
  28. virtual bool DestroyDXObjects(void);
  29. virtual bool UpdateFrame(void);
  30. public:
  31. // ----
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CFireworksApp)
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. //{{AFX_MSG(CFireworksApp)
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. #endif // _DXGUIDE_FIREWORKS__H