1234567891011121314151617181920 |
- // Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
- namespace Animancer
- {
- /// <summary>An object with an <see cref="Invoke"/> method.</summary>
- /// https://kybernetik.com.au/animancer/api/Animancer/IInvokable
- #if UNITY_ASSERTIONS
- [AnimancerHelpUrl(Strings.DocsURLs.AnimancerEventParameters)]
- #endif
- public interface IInvokable : IPolymorphic
- {
- /************************************************************************************************************************/
- /// <summary>Executes the main function of this object.</summary>
- void Invoke();
- /************************************************************************************************************************/
- }
- }
|