PolycodeView.h 343 B

12345678910111213141516171819
  1. #pragma once
  2. #include <winsock2.h>
  3. #include <windows.h>
  4. #include "PolyCore.h"
  5. using namespace Polycode;
  6. namespace Polycode {
  7. class _PolyExport PolycodeView : public PolycodeViewBase {
  8. public:
  9. PolycodeView(HINSTANCE hInstance, int nCmdShow, LPCTSTR windowTitle, bool resizable=false);
  10. ~PolycodeView();
  11. HWND hwnd;
  12. };
  13. }