2023-06-20 04:33:09 +00:00
|
|
|
#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) {
|
2023-06-27 10:23:44 +00:00
|
|
|
QMessageBox::critical(nullptr, "Error", toQString(strf("Exception caught: {}\n", outputException(e, true))));
|
|
|
|
coutf("Exception caught: {}\n", outputException(e, true));
|
2023-06-20 04:33:09 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|