From ebb1ab3d05b1e61a491375b7640196e04f1bab06 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 9 Apr 2020 16:15:07 +0200 Subject: Initial commit: Basic chess grid --- src/harbour-sailchess.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/harbour-sailchess.cpp (limited to 'src') diff --git a/src/harbour-sailchess.cpp b/src/harbour-sailchess.cpp new file mode 100644 index 0000000..e7df625 --- /dev/null +++ b/src/harbour-sailchess.cpp @@ -0,0 +1,20 @@ +#ifdef QT_QML_DEBUG +#include +#endif + +#include + +int main(int argc, char *argv[]) +{ + // SailfishApp::main() will display "qml/harbour-sailchess.qml", if you need more + // control over initialization, you can use: + // + // - SailfishApp::application(int, char *[]) to get the QGuiApplication * + // - SailfishApp::createView() to get a new QQuickView * instance + // - SailfishApp::pathTo(QString) to get a QUrl to a resource file + // - SailfishApp::pathToMainQml() to get a QUrl to the main QML file + // + // To display the view, call "show()" (will show fullscreen on device). + + return SailfishApp::main(argc, argv); +} -- cgit v1.2.3