com.alicizax.kybernetik.ani.../Runtime/Interfaces/IInvokable.cs

21 lines
772 B
C#
Raw Permalink Normal View History

2025-01-08 15:26:57 +08:00
// 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();
/************************************************************************************************************************/
}
}