mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
15 lines
177 B
C
15 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
// stl include
|
||
|
#include <string>
|
||
|
|
||
|
// json include
|
||
|
#include <json/value.h>
|
||
|
|
||
|
struct EffectDefinition
|
||
|
{
|
||
|
std::string name;
|
||
|
std::string script;
|
||
|
Json::Value args;
|
||
|
};
|