summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/games/kcheckers/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kcheckers/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/noncore/games/kcheckers/main.cpp b/noncore/games/kcheckers/main.cpp
new file mode 100644
index 0000000..ac86271
--- a/dev/null
+++ b/noncore/games/kcheckers/main.cpp
@@ -0,0 +1,18 @@
+
+#include <qpe/qpeapplication.h>
+#include <qfont.h>
+
+#include "kcheckers.h"
+
+
+int main(int argc, char *argv[])
+{
+ QPEApplication app(argc,argv);
+
+ KCheckers kcheckers;
+ app.setMainWidget(&kcheckers);
+ kcheckers.show();
+
+ return app.exec();
+}
+