诸暨麻将添加redis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
799 B

  1. #pragma once
  2. #include "Stdafx.h"
  3. #include "Resource.h"
  4. //////////////////////////////////////////////////////////////////////////
  5. //游戏配置
  6. class CGameOption : public CSkinDialog
  7. {
  8. //变量定义
  9. public:
  10. bool m_bEnableSound; //启用声音
  11. bool m_bAllowLookon; //允许旁观
  12. //控件变量
  13. public:
  14. CSkinButton m_btOK; //确定按钮
  15. CSkinButton m_btCancel; //取消按钮
  16. //函数定义
  17. public:
  18. //构造函数
  19. CGameOption();
  20. //析构函数
  21. virtual ~CGameOption();
  22. //重载函数
  23. protected:
  24. //控件绑定
  25. virtual void DoDataExchange(CDataExchange * pDX);
  26. //初始化函数
  27. virtual BOOL OnInitDialog();
  28. //确定消息
  29. virtual void OnOK();
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. //////////////////////////////////////////////////////////////////////////