summaryrefslogtreecommitdiffstats
path: root/kpacman/main.cpp
blob: 48ebf48bdec6aceb5d2c655d6e4d0239d232c2d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/***************************************************************************
                          main.cpp  -  description
                             -------------------
    begin                : Sam Jan 19 13:37:57 CET 2002
    copyright            : (C) 1998-2003 by J�rg Th�nnissen
    email                : [email protected]
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <klocale.h>

#include "kpacman.h"

static const char *description =
        I18N_NOOP("A pacman game for the KDE Desktop\n\n"
                  "The program based on the source of ksnake\n"
                  "by Michel Filippi ([email protected]).\n"
                  "The design was strongly influenced by the pacman\n"
                  "(c) 1980 MIDWAY MFG.CO.\n\n"
                  "I like to thank my girlfriend Elke Krueers for\n"
                  "the last 14 years of her friendship\n"
                  "and Christine Nickel for the 'K' in my life.");

static KCmdLineOptions options[] =
{
  { 0, 0, 0 }
  // INSERT YOUR COMMANDLINE OPTIONS HERE
};

int main(int argc, char *argv[])
{

  KAboutData aboutData( "kpacman", I18N_NOOP("Kpacman"),
    VERSION, description, KAboutData::License_GPL,
    "(c) 1998-2003, Jörg Thönnissen", 0, 0, "[email protected]");
  aboutData.addAuthor("Jörg Thönnissen",0, "[email protected]");
  KCmdLineArgs::init( argc, argv, &aboutData );
  KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.

  KApplication app;

  KpacmanApp *kpacman = new KpacmanApp();
  kpacman->show();

  return app.exec();
}