14 lines
193 B
C++
Raw Normal View History

2021-09-10 03:21:51 +02:00
#pragma once
#include "context.hpp"
namespace ui_scripting::lua
{
struct event
{
std::string name;
2021-09-14 02:48:11 +02:00
const void* 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
};
}