main.cpp 264 B

12345678910
  1. #include "Polycode.h"
  2. #include "PolycodeView.h"
  3. #include "HelloPolycodeApp.h"
  4. int main(int argc, char *argv[]) {
  5. PolycodeView *view = new PolycodeView("Hello Polycode!");
  6. HelloPolycodeApp *app = new HelloPolycodeApp(view);
  7. while(app->Update()) {}
  8. return 0;
  9. }