diff options
author | Michele Calgaro <[email protected]> | 2020-12-11 16:15:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-12-11 16:19:06 +0900 |
commit | 5a413fcfb0c67a3f8173216352c5c87dbe3097e5 (patch) | |
tree | 2c4110256a0faa017d803c802f2e3011c2f095e4 /konquest/Konquest.cpp | |
parent | 5f8a7a3105f27c7b45d98a7a6063ef561a45dd29 (diff) | |
download | tdegames-5a413fcfb0c67a3f8173216352c5c87dbe3097e5.tar.gz tdegames-5a413fcfb0c67a3f8173216352c5c87dbe3097e5.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 931f81f9fe49f3fe339bb3cb23501393bfbb2d0a)
Diffstat (limited to 'konquest/Konquest.cpp')
-rw-r--r-- | konquest/Konquest.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/konquest/Konquest.cpp b/konquest/Konquest.cpp new file mode 100644 index 00000000..a0c772a8 --- /dev/null +++ b/konquest/Konquest.cpp @@ -0,0 +1,34 @@ +#include <tdeapplication.h> +#include <tdelocale.h> +#include <tdecmdlineargs.h> +#include <tdeaboutdata.h> + +#include "version.h" +#include "mainwin.h" +#include "map_widget.h" + +static const char description[] = I18N_NOOP("Galactic Strategy TDE Game"); + +int +main(int argc, char **argv) +{ + TDEAboutData aboutData( "konquest", I18N_NOOP("Konquest"), + KONQUEST_VERSION, description, TDEAboutData::License_GPL, + I18N_NOOP("Copyright (c) 1999-2001, Developers")); + aboutData.addAuthor("Russ Steffen",0, "[email protected]"); + TDECmdLineArgs::init( argc, argv, &aboutData ); + + TDEApplication a; + TQApplication::setGlobalMouseTracking( true ); + TDEGlobal::locale()->insertCatalogue("libtdegames"); + + if (a.isRestored()) + RESTORE(MainWindow) + else { + MainWindow *w = new MainWindow; + a.setMainWidget(w); + w->show(); + } + return a.exec(); +} + |