2013-12-02 10:09:56 +00:00
|
|
|
#include "MultiMC.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "MainWindow.h"
|
2016-08-10 23:44:01 +01:00
|
|
|
#include "LaunchController.h"
|
2015-09-29 23:11:00 +01:00
|
|
|
#include <InstanceList.h>
|
|
|
|
#include <QDebug>
|
2013-12-02 10:09:56 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
|
|
|
|
|
|
|
switch (app.status())
|
|
|
|
{
|
|
|
|
case MultiMC::Initialized:
|
2016-11-06 20:58:54 +00:00
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
|
|
|
Q_INIT_RESOURCE(versions);
|
|
|
|
|
|
|
|
Q_INIT_RESOURCE(pe_dark);
|
|
|
|
Q_INIT_RESOURCE(pe_light);
|
|
|
|
Q_INIT_RESOURCE(pe_blue);
|
|
|
|
Q_INIT_RESOURCE(pe_colored);
|
|
|
|
Q_INIT_RESOURCE(OSX);
|
|
|
|
Q_INIT_RESOURCE(iOS);
|
2016-10-30 01:37:38 +00:00
|
|
|
return app.exec();
|
2016-11-06 20:58:54 +00:00
|
|
|
}
|
2013-12-02 10:09:56 +00:00
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|