wuxianshengcong/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Framework/Events/CustomEventArgs.cs

16 lines
326 B
C#
Raw Normal View History

2025-01-02 14:49:00 +08:00
namespace Unity.VisualScripting
{
public struct CustomEventArgs
{
public readonly string name;
public readonly object[] arguments;
public CustomEventArgs(string name, params object[] arguments)
{
this.name = name;
this.arguments = arguments;
}
}
}