2
0

PolycodeTemplateApp.h 448 B

12345678910111213141516171819202122232425262728
  1. //
  2. // Polycode template. Write your code here.
  3. //
  4. #include "Polycode.h"
  5. using namespace Polycode;
  6. class PolycodeTemplateApp : public EventHandler {
  7. public:
  8. PolycodeTemplateApp(PolycodeView *view);
  9. ~PolycodeTemplateApp();
  10. void handleEvent(Event *event);
  11. bool Update();
  12. private:
  13. Sound *bgSound;
  14. Sound *sound1;
  15. Sound *sound2;
  16. Sound *sound3;
  17. ScenePrimitive *test;
  18. Core *core;
  19. };