| 1234567891011121314151617 |
- #include <Polycode.h>
- #include "PolycodeView.h"
- #include "Polycode2DPhysics.h"
- using namespace Polycode;
- class HelloPolycodeApp {
- public:
- HelloPolycodeApp(PolycodeView *view);
- ~HelloPolycodeApp();
- bool Update();
-
- private:
- Core *core;
- PhysicsScreen *screen;
- ScreenEntity *lastEntity;
- };
|