summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/main.cpp
blob: ac8627119e8f5dc5ff80e8e728ca684de8183df6 (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.show();

  return app.exec();
}