CreateChr.h
上传用户:cydong117
上传日期:2009-11-10
资源大小:638k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. // LoginProcess.h: interface for the CCreateChrProcess class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifndef _CREATE_CHR_H
  5. #define _CREATE_CHR_H
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCreateChr : public CBMWnd 
  10. {
  11. /////////////////////////////////////////////////////////////////////////////////////////
  12. // Functions
  13. public:
  14. CCreateChr();
  15. ~CCreateChr();
  16. virtual VOID Create(CWHWilImageData* pxImage);
  17. virtual HRESULT OnButtonDown(WPARAM wParam, LPARAM lParam);
  18. virtual HRESULT OnButtonDown(POINT ptMouse);
  19. virtual HRESULT OnButtonUp(WPARAM wParam, LPARAM lParam);
  20. virtual HRESULT OnButtonUp(POINT ptMouse);
  21. virtual HRESULT OnKeyDown(WPARAM wParam, LPARAM lParam);
  22. virtual LRESULT OnMouseMove(WPARAM wParam, LPARAM lParam);
  23. virtual VOID Render(INT nLoopTime);
  24. private:
  25. protected:
  26. /////////////////////////////////////////////////////////////////////////////////////////
  27. // Variable
  28. public:
  29. private:
  30. CMirButton m_xButtons[4];
  31. BOOL m_fIsButtonDown;
  32. protected:
  33. CWHWilImageData *m_pxImage;
  34. INT m_nSelectGender;
  35. INT m_nSelectJob;
  36. };
  37. #endif //_CREATE_CHR_H