PolycodeView.h 291 B

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