2013-12-01 14:09:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
// QT include
|
|
|
|
#include <QString>
|
|
|
|
#include <QJsonObject>
|
2013-12-01 14:09:01 +01:00
|
|
|
|
|
|
|
struct EffectDefinition
|
|
|
|
{
|
2016-10-09 22:22:17 +02:00
|
|
|
QString name;
|
|
|
|
QString script;
|
|
|
|
QJsonObject args;
|
2013-12-01 14:09:01 +01:00
|
|
|
};
|