PrismLauncher/application/main.cpp

34 lines
628 B
C++
Raw Normal View History

2013-12-02 10:09:56 +00:00
#include "MultiMC.h"
2015-02-09 00:51:14 +00:00
#include "MainWindow.h"
#include "LaunchController.h"
#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);
Q_INIT_RESOURCE(instances);
Q_INIT_RESOURCE(multimc);
Q_INIT_RESOURCE(backgrounds);
Q_INIT_RESOURCE(versions);
2013-12-02 10:09:56 +00:00
Q_INIT_RESOURCE(pe_dark);
Q_INIT_RESOURCE(pe_light);
Q_INIT_RESOURCE(pe_blue);
Q_INIT_RESOURCE(pe_colored);
2014-10-26 23:15:52 +00:00
Q_INIT_RESOURCE(OSX);
Q_INIT_RESOURCE(iOS);
2013-12-02 10:09:56 +00:00
switch (app.status())
{
case MultiMC::Initialized:
return app.exec();
2013-12-02 10:09:56 +00:00
case MultiMC::Failed:
return 1;
case MultiMC::Succeeded:
return 0;
}
}