诸暨麻将添加redis
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 
 

32 行
626 B

  1. #include "Stdafx.h"
  2. #include "GameClient.h"
  3. #include "GameClientEngine.h"
  4. //应用程序对象
  5. CGameClientApp theApp;
  6. //////////////////////////////////////////////////////////////////////////
  7. //构造函数
  8. CGameClientApp::CGameClientApp()
  9. {
  10. }
  11. //析构函数
  12. CGameClientApp::~CGameClientApp()
  13. {
  14. }
  15. //创建引擎
  16. CGameFrameEngine * CGameClientApp::GetGameFrameEngine(DWORD dwSDKVersion)
  17. {
  18. //版本检测
  19. if (InterfaceVersionCompare(VERSION_FRAME_SDK,dwSDKVersion)==false) return NULL;
  20. //创建引擎
  21. return new CGameClientEngine;
  22. }
  23. //////////////////////////////////////////////////////////////////////////