2
0

PolycodeView.h 246 B

123456789101112131415
  1. #pragma once
  2. #include "PolySDLCore.h"
  3. namespace Polycode {
  4. class PolycodeView : public PolycodeViewBase {
  5. public:
  6. PolycodeView(const char *title);
  7. ~PolycodeView();
  8. String windowTitle;
  9. };
  10. }