summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/main.cpp
Unidiff
Diffstat (limited to 'noncore/games/kcheckers/main.cpp') (more/less context) (ignore 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 @@
1
2#include <qpe/qpeapplication.h>
3#include <qfont.h>
4
5#include "kcheckers.h"
6
7
8int main(int argc, char *argv[])
9{
10 QPEApplication app(argc,argv);
11
12 KCheckers kcheckers;
13 app.setMainWidget(&kcheckers);
14 kcheckers.show();
15
16 return app.exec();
17}
18