mirror of
https://github.com/Snigdha-OS/snigdhaos-horizon.git
synced 2025-09-20 12:14:57 +02:00
13 lines
184 B
C++
13 lines
184 B
C++
#include "horizon.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
Horizon w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|