This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
Passgen/main.cpp

12 lines
198 B
C++

#include "boss.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
boss w;
//w.show(); это нам нах ненужно
return a.exec();
}