mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
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;
|
||
|
};
|