2021-09-10 03:21:51 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "context.hpp"
|
|
|
|
|
|
|
|
namespace ui_scripting::lua
|
|
|
|
{
|
|
|
|
struct event
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
element* element{};
|
2021-09-13 01:30:14 +02:00
|
|
|
std::vector<std::variant<int, std::string>> arguments;
|
2021-09-10 03:21:51 +02:00
|
|
|
};
|
|
|
|
}
|