mirror of
https://github.com/Snigdha-OS/snigdhaos-horizon.git
synced 2025-12-06 11:23:51 +01:00
12 lines
166 B
C++
12 lines
166 B
C++
#include "horizon.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
Horizon w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|