mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
d9c2a2d91a
* Update ActiveEffectDefinition.h * Update EffectDefinition.h * Update EffectEngine.h * Update Hyperion.h * Update LedDevice.h * Update QJsonFactory.h * Update QJsonSchemaChecker.h * Update Effect.cpp * Update Effect.h * Update EffectEngine.cpp * Update Hyperion.cpp * Update JsonClientConnection.cpp * Update JsonClientConnection.h * Update schema-config.json * Update LedDevice.cpp * Update QJsonSchemaChecker.cpp * Update hyperion-remote.cpp * Update JsonConnection.cpp * Update JsonConnection.h * Update hyperiond.cpp
15 lines
186 B
C
15 lines
186 B
C
#pragma once
|
|
|
|
// QT include
|
|
#include <QString>
|
|
#include <QJsonObject>
|
|
|
|
struct ActiveEffectDefinition
|
|
{
|
|
QString script;
|
|
QString name;
|
|
int priority;
|
|
int timeout;
|
|
QJsonObject args;
|
|
};
|