1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface IEventUnit : IUnit, IGraphEventListener 6 { 7 bool coroutine { get; } 8 } 9 public interface IGameObjectEventUnit : IEventUnit 10 { 11 Type MessageListenerType { get; } 12 } 13}