home *** CD-ROM | disk | FTP | other *** search
/ Game Audio Programming / GameAudioProgramming.iso / Game_Audio / ScriptTest / ScriptTestDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-06-19  |  1.5 KB  |  59 lines

  1. // ScriptTestDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_SCRIPTTESTDLG_H__5DF66736_840C_4348_B283_11A32F117AA6__INCLUDED_)
  5. #define AFX_SCRIPTTESTDLG_H__5DF66736_840C_4348_B283_11A32F117AA6__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. #include "Audio.h"
  12.  
  13. using namespace Audio;
  14.  
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CScriptTestDlg dialog
  18.  
  19. class CScriptTestDlg : public CDialog
  20. {
  21. // Construction
  22. public:
  23.     CScriptTestDlg(CWnd* pParent = NULL);    // standard constructor
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CScriptTestDlg)
  27.     enum { IDD = IDD_SCRIPTTEST_DIALOG };
  28.     CSpinButtonCtrl    m_PlayerStrength;
  29.     CSpinButtonCtrl    m_MonsterStrength;
  30.     //}}AFX_DATA
  31.  
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CScriptTestDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     HICON m_hIcon;
  41.     IAudioScript* m_pScript;
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CScriptTestDlg)
  45.     virtual BOOL OnInitDialog();
  46.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  47.     afx_msg void OnPaint();
  48.     afx_msg HCURSOR OnQueryDragIcon();
  49.     afx_msg void OnDestroy();
  50.     afx_msg void OnEncounterMonster();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57.  
  58. #endif // !defined(AFX_SCRIPTTESTDLG_H__5DF66736_840C_4348_B283_11A32F117AA6__INCLUDED_)
  59.