summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/main.cpp
blob: b8dd6201bf8154a9dcc346d34d43c960e6ef33d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.showMaximized();

  return app.exec();
}