1234567891011121314151617181920212223242526272829 |
- namespace Animancer
- {
-
-
-
-
-
-
- public interface IHasEvents
- {
-
-
- AnimancerEvent.Sequence Events { get; }
-
- ref AnimancerEvent.Sequence.Serializable SerializedEvents { get; }
-
- }
-
-
-
- public interface ITransitionWithEvents : ITransition, IHasEvents { }
- }
|