Files
2025-08-13 09:26:42 +08:00

13 lines
166 B
C#

namespace LuaInterface
{
public class LuaEventHandler
{
public LuaFunction handler;
public void handleEvent(object[] args)
{
handler.Call(args);
}
}
}