main.cpp 296 B

12345678910
  1. #include "Polycode.h"
  2. #include "PolycodeView.h"
  3. #include "PolycodeLinuxPlayer.h"
  4. int main(int argc, char *argv[]) {
  5. PolycodeView *view = new PolycodeView("Polycode Player");
  6. PolycodeLinuxPlayer *player = new PolycodeLinuxPlayer(view, "main.polyapp", false);
  7. player->runPlayer();
  8. return 0;
  9. }