| 123456789101112131415161718 |
- #include <Polycode.h>
- #include "PolycodeView.h"
- using namespace Polycode;
- class HelloPolycodeApp {
- public:
- HelloPolycodeApp(PolycodeView *view);
- ~HelloPolycodeApp();
- bool Update();
-
- private:
- Number positionValue;
- Number listenerPositionValue;
- Core *core;
- ScreenEntity *sourceEntity;
- ScreenEntity *listenerEntity;
- };
|