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