You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
57 lines
2.2 KiB
/***************************************************************************
|
|
main.cpp - description
|
|
-------------------
|
|
begin : Sam Jan 19 13:37:57 CET 2002
|
|
copyright : (C) 1998-2003 by Jörg Thönnissen
|
|
email : joe@dsite.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 <tdecmdlineargs.h>
|
|
#include <tdeaboutdata.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include "tdepacman.h"
|
|
|
|
static const char *description =
|
|
I18N_NOOP("A pacman game for the TDE Desktop\n\n"
|
|
"The program based on the source of ksnake\n"
|
|
"by Michel Filippi (mfilippi@sade.rhein-main.de).\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 TDECmdLineOptions options[] =
|
|
{
|
|
{ 0, 0, 0 }
|
|
// INSERT YOUR COMMANDLINE OPTIONS HERE
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
TDEAboutData aboutData( "tdepacman", I18N_NOOP("TDEpacman"),
|
|
VERSION, description, TDEAboutData::License_GPL,
|
|
"(c) 1998-2003, Jörg Thönnissen", 0, 0, "joe@dsite.de");
|
|
aboutData.addAuthor("Jörg Thönnissen",0, "joe@dsite.de");
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
|
|
|
|
TDEApplication app;
|
|
|
|
TDEpacmanApp *tdepacman = new TDEpacmanApp();
|
|
tdepacman->show();
|
|
|
|
return app.exec();
|
|
}
|