mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
bb9b02cf05
* Create ActiveEffectDefinition.h * Update EffectEngine.h * Update Hyperion.h * Update Effect.h * Update EffectEngine.cpp * Update Hyperion.cpp * Update JsonClientConnection.cpp Former-commit-id: 5664b69da6893dd0d0de0e7c74c01cdcafd57310
16 lines
193 B
C++
16 lines
193 B
C++
#pragma once
|
|
|
|
// stl include
|
|
#include <string>
|
|
|
|
// json include
|
|
#include <json/value.h>
|
|
|
|
struct ActiveEffectDefinition
|
|
{
|
|
std::string script;
|
|
int priority;
|
|
int timeout;
|
|
Json::Value args;
|
|
};
|