诸暨麻将添加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.
 
 
 
 
 
 

32 lines
631 B

  1. #pragma once
  2. #ifndef __AFXWIN_H__
  3. #error 在包含用于 PCH 的此文件之前包含“stdafx.h”
  4. #endif
  5. #include "Resource.h"
  6. #include "GameClientEngine.h"
  7. //////////////////////////////////////////////////////////////////////////
  8. //应用程序类
  9. class CGameClientApp : public CGameFrameApp
  10. {
  11. //函数定义
  12. public:
  13. //构造函数
  14. CGameClientApp();
  15. //析构函数
  16. virtual ~CGameClientApp();
  17. //继承函数
  18. public:
  19. //创建引擎
  20. virtual CGameFrameEngine * GetGameFrameEngine(DWORD dwSDKVersion);
  21. };
  22. //应用程序对象
  23. extern CGameClientApp theApp;
  24. //////////////////////////////////////////////////////////////////////////