mirror of
https://github.com/mrfluffy-dev/HotspotsheidGUI-linux.git
synced 2026-01-16 19:20:33 +00:00
13 lines
223 B
C++
13 lines
223 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
a.setWindowIcon(QIcon("./HotspotShield.png"));
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|