Move project files to repo root

This commit is contained in:
Dark Steveneq
2025-10-11 19:22:51 +02:00
parent 557938bb0d
commit c82b457ccc
45 changed files with 89 additions and 3149 deletions

17
QYRComponents/qyrcomponents.h Executable file
View File

@@ -0,0 +1,17 @@
#ifndef QYRCOMPONENTS_H
#define QYRCOMPONENTS_H
#include <QtQuick/QQuickPaintedItem>
class QYRComponents : public QQuickPaintedItem
{
Q_OBJECT
QML_ELEMENT
Q_DISABLE_COPY(QYRComponents)
public:
explicit QYRComponents(QQuickItem *parent = nullptr);
void paint(QPainter *painter) override;
~QYRComponents() override;
};
#endif // QYRCOMPONENTS_H