🔧 build(_init): initial commits

This commit is contained in:
Eshan Roy
2024-11-29 18:29:49 +05:30
commit 0461efc2b8
527 changed files with 28365 additions and 0 deletions

23
horizon.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef HORIZON_H
#define HORIZON_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui {
class Horizon;
}
QT_END_NAMESPACE
class Horizon : public QMainWindow
{
Q_OBJECT
public:
Horizon(QWidget *parent = nullptr);
~Horizon();
private:
Ui::Horizon *ui;
};
#endif // HORIZON_H