v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
29
source/mod_uploader/main.cpp
Normal file
29
source/mod_uploader/main.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
#include <QApplication>
|
||||
#include <QMessageBox>
|
||||
|
||||
#include "steam/steam_api.h"
|
||||
|
||||
#include "StarModUploader.hpp"
|
||||
#include "StarStringConversion.hpp"
|
||||
|
||||
using namespace Star;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
QApplication app(argc, argv);
|
||||
|
||||
if (!SteamAPI_Init()) {
|
||||
QMessageBox::critical(nullptr, "Error", "Could not initialize Steam API");
|
||||
return 1;
|
||||
}
|
||||
|
||||
ModUploader modUploader;
|
||||
modUploader.show();
|
||||
|
||||
try {
|
||||
return app.exec();
|
||||
} catch (std::exception const& e) {
|
||||
QMessageBox::critical(nullptr, "Error", toQString(strf("Exception caught: %s\n", outputException(e, true))));
|
||||
coutf("Exception caught: %s\n", outputException(e, true));
|
||||
return 1;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue