Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Platformer with Level Editor

 #include <QApplication>
 #include <FelgoApplication>

 #include <QQmlApplicationEngine>

 int main(int argc, char *argv[])
 {

   QApplication app(argc, argv);

   FelgoApplication felgo;

   // QQmlApplicationEngine is the preferred way to start qml projects since Qt 5.2
   // if you have older projects using Qt App wizards from previous QtCreator versions than 3.1, please change them to QQmlApplicationEngine
   QQmlApplicationEngine engine;
   felgo.initialize(&engine);

   // use this during development
   // for PUBLISHING, use the entry point below
   felgo.setMainQmlFileName(QStringLiteral("qml/PlatformerWithLevelEditorMain.qml"));

   // use this instead of the above call to avoid deployment of the qml files and compile them into the binary with qt's resource system qrc
   // this is the preferred deployment option for publishing games to the app stores, because then your qml files and js files are protected
   // to avoid deployment of your qml files and images, also comment the DEPLOYMENTFOLDERS command in the .pro file
   // also see the .pro file for more details
   //  felgo.setMainQmlFileName(QStringLiteral("qrc:/qml/PlatformerWithLevelEditorMain.qml"));

   engine.load(QUrl(felgo.mainQmlFileName()));
Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded