SVN_SILENT made messages (.desktop file)
[kdegames.git] / kblocks / main.cpp
blobdc884129c7732ed15c9a201b29d8e52860b95895
1 /***************************************************************************
2 * KBlocks, a falling blocks game for KDE *
3 * Copyright (C) 2007 Mauricio Piacentini <mauricio@tabuleiro.com> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 ***************************************************************************/
11 #include <kapplication.h>
12 #include <kcmdlineargs.h>
13 #include <kaboutdata.h>
14 #include <klocale.h>
15 #include <kglobal.h>
17 #include "kblocks.h"
19 int main( int argc, char** argv )
21 KAboutData aboutData( "kblocks", 0, ki18n("KBlocks"),
22 "0.1", ki18n("A falling blocks game for KDE"), KAboutData::License_GPL,
23 ki18n("(c) 2007, Mauricio Piacentini"));
24 aboutData.addAuthor(ki18n("Mauricio Piacentini"), ki18n("Author"), "piacentini@kde.org");
25 aboutData.addCredit(ki18n("Johann Ollivier Lapeyre"), ki18n("Oxygen art for KDE4"), "johann.ollivierlapeyre@gmail.com");
27 KCmdLineArgs::init( argc, argv, &aboutData );
29 KApplication app;
30 KGlobal::locale()->insertCatalog("libkdegames");
32 KBlocks *window = new KBlocks();
33 window->show();
34 return app.exec();