texcrafting/texturecrafter.h

22 lines
352 B
C
Raw Normal View History

2024-09-09 21:12:05 +00:00
#ifndef TEXTURECRAFTER_H
#define TEXTURECRAFTER_H
#include <QObject>
#include <QQmlEngine>
#include <QImage>
class TextureCrafter : public QObject
{
Q_OBJECT
QML_ELEMENT
public:
explicit TextureCrafter(QObject *parent = nullptr);
Q_INVOKABLE void packChannels(QVector<QUrl> images);
signals:
private:
};
#endif // TEXTURECRAFTER_H