14 lines
174 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;
element* element{};
std::vector<sol::lua_value> arguments;
};
}