Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /Framework /Events /IEventUnit.cs
| using System; | |
| namespace Unity.VisualScripting | |
| { | |
| public interface IEventUnit : IUnit, IGraphEventListener | |
| { | |
| bool coroutine { get; } | |
| } | |
| public interface IGameObjectEventUnit : IEventUnit | |
| { | |
| Type MessageListenerType { get; } | |
| } | |
| } | |