Capy64/Capy64/LuaRuntime/LuaEvent.cs
Alessandro Proto 1eb2edd179 This works :)
2023-01-10 20:06:18 +01:00

8 lines
205 B
C#

namespace Capy64.LuaRuntime;
public class LuaEvent : ILuaEvent
{
public string Name { get; set; }
public object[] Parameters { get; set; }
public bool BypassFilter { get; set; } = false;
}