GameAssistDlg.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // GameAssistDlg.h : 头文件
  2. //
  3. #include "MouseAssist.h"
  4. #pragma once
  5. // CGameAssistDlg 对话框
  6. class CGameAssistDlg : public CDialog
  7. {
  8. // 构造
  9. public:
  10. CGameAssistDlg(CWnd* pParent = NULL); // 标准构造函数
  11. // 对话框数据
  12. enum { IDD = IDD_GAMEASSIST_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  15. // 实现
  16. protected:
  17. HICON m_hIcon;
  18. // 生成的消息映射函数
  19. virtual BOOL OnInitDialog();
  20. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  21. afx_msg void OnPaint();
  22. afx_msg HCURSOR OnQueryDragIcon();
  23. DECLARE_MESSAGE_MAP()
  24. MouseAssist m_mouseAssist;
  25. public:
  26. afx_msg void OnBnClickedOpengame();
  27. afx_msg void OnBnClickedButton2();
  28. afx_msg void OnBnClickedButton3();
  29. afx_msg void OnBnClickedButton4();
  30. afx_msg void OnBnClickedButton5();
  31. afx_msg void OnBnClickedButton6();
  32. CButton m_cbSummoner;
  33. afx_msg void OnBnClickedButton7();
  34. CButton m_cbZJ;
  35. afx_msg void OnBnClickedButton8();
  36. afx_msg void OnBnClickedButton9();
  37. CButton m_cbZJ2;
  38. CButton m_cbAggressiveSkill;
  39. afx_msg void OnBnClickedButton10();
  40. };