mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-14 01:55:46 +00:00
8 lines
205 B
C#
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;
|
|
}
|