aerothemeplasma/Plasma/KDE_Plasma_Theme/Deprecated/AeroColorMixer/main.cpp
2023-08-25 00:32:11 +02:00

12 lines
172 B
C++
Executable file

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}