2
0

HelloPolycodeApp.h 344 B

12345678910111213141516171819
  1. #include <Polycode.h>
  2. #include "PolycodeView.h"
  3. using namespace Polycode;
  4. class HelloPolycodeApp : public EventHandler {
  5. public:
  6. HelloPolycodeApp(PolycodeView *view);
  7. ~HelloPolycodeApp();
  8. bool Update();
  9. private:
  10. Entity *lights;
  11. ScenePrimitive *torus;
  12. Core *core;
  13. Scene *scene;
  14. Number cameraRotation;
  15. };