// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2026 Kybernetik // namespace Animancer { /// An object which has an . /// /// Documentation: /// /// Animancer Events /// /// https://kybernetik.com.au/animancer/api/Animancer/IHasEvents public interface IHasEvents { /************************************************************************************************************************/ /// Events which will be triggered as the animation plays. AnimancerEvent.Sequence Events { get; } /// Events which will be triggered as the animation plays. AnimancerEvent.Sequence.Serializable SerializedEvents { get; set; } /************************************************************************************************************************/ } }