HelloPolycodeApp.h 307 B

1234567891011121314151617
  1. #include <Polycode.h>
  2. #include "PolycodeView.h"
  3. #include "Polycode2DPhysics.h"
  4. using namespace Polycode;
  5. class HelloPolycodeApp {
  6. public:
  7. HelloPolycodeApp(PolycodeView *view);
  8. ~HelloPolycodeApp();
  9. bool Update();
  10. private:
  11. Core *core;
  12. PhysicsScene2D *scene;
  13. SceneEntity *lastEntity;
  14. };