| 12345678910111213141516171819 |
- #include <Polycode.h>
- #include "PolycodeView.h"
- using namespace Polycode;
- class HelloPolycodeApp : public EventHandler {
- public:
- HelloPolycodeApp(PolycodeView *view);
- ~HelloPolycodeApp();
-
- bool Update();
- void handleEvent(Event *e);
-
- private:
- Core *core;
- Sound *testSound;
- };
|