13 lines
182 B
C++
13 lines
182 B
C++
#include "main_window.hxx"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QApplication app(argc, argv);
|
|
|
|
auto w = new PhotonLight;
|
|
w->show();
|
|
|
|
return app.exec();
|
|
}
|