mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 09:24:39 +01:00
13 lines
166 B
C#
13 lines
166 B
C#
namespace LuaInterface
|
|
{
|
|
public class LuaEventHandler
|
|
{
|
|
public LuaFunction handler;
|
|
|
|
public void handleEvent(object[] args)
|
|
{
|
|
handler.Call(args);
|
|
}
|
|
}
|
|
}
|