2
0

HelloPolycodeApp.h 348 B

123456789101112131415161718
  1. #include <Polycode.h>
  2. #include "PolycodeView.h"
  3. using namespace Polycode;
  4. class HelloPolycodeApp {
  5. public:
  6. HelloPolycodeApp(PolycodeView *view);
  7. ~HelloPolycodeApp();
  8. bool Update();
  9. private:
  10. Number positionValue;
  11. Number listenerPositionValue;
  12. Core *core;
  13. ScreenEntity *sourceEntity;
  14. ScreenEntity *listenerEntity;
  15. };