MainTest.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #include "kengine.h"
  2. #include "KWin32Wnd.h"
  3. //#include "KCore.h"
  4. //#include "KMp3Music.h"
  5. //#include "KSubWorldSet.h"
  6. #include "ime.h"
  7. class KMyApp : public KWin32App
  8. {
  9. private:
  10. KDirectDraw m_Draw;
  11. KDirectInput m_Input;
  12. KDirectSound m_Sound;
  13. KMouse m_Mouse;
  14. KKeyboard m_Keyboard;
  15. KCanvas m_Canvas;
  16.     KFont m_Font;
  17. CIme * pIme;
  18. public:
  19. KMyApp();
  20. BOOL GameInit();
  21. BOOL GameLoop();
  22. BOOL GameExit();
  23. LRESULT MsgProc(HWND hWnd, 
  24. UINT uMsg, 
  25. WPARAM wParam, 
  26. LPARAM lParam
  27. );
  28. private:
  29. void GetUserInput();
  30. void Paint();
  31. void ResetWindow();
  32. };