PolycodeView.h 268 B

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