- Some changes to make build process clear
- There could be 1-8 hedgehogs (was 3-8) in team
- Start implementing 'Load' page
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}