Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomEventArgs.cs 326B

123456789101112131415
  1. namespace Unity.VisualScripting
  2. {
  3. public struct CustomEventArgs
  4. {
  5. public readonly string name;
  6. public readonly object[] arguments;
  7. public CustomEventArgs(string name, params object[] arguments)
  8. {
  9. this.name = name;
  10. this.arguments = arguments;
  11. }
  12. }
  13. }