Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

cClient.h 519B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include "cCharInfo.h"
  3. #include "cObjectDB.h"
  4. #include "cInterface.h"
  5. #include "cGraphics.h"
  6. #include "cNetwork.h"
  7. class cClient : public cThread {
  8. public:
  9. cClient(HINSTANCE hInst, HWND hWnd);
  10. ~cClient();
  11. void Resize();
  12. void Run();
  13. void WindowsMessage(UINT Message, WPARAM wParam, LPARAM lParam);
  14. bool Initted();
  15. private:
  16. HWND m_hWnd;
  17. HINSTANCE m_hInst;
  18. bool m_bInit;
  19. cObjectDB *m_ObjectDB;
  20. cCharInfo *m_CharInfo;
  21. cInterface *m_Interface;
  22. cGraphics *m_Graphics;
  23. cNetwork *m_Network;
  24. };