chore: initial commit

This commit is contained in:
2026-05-08 11:04:00 +08:00
commit f55d2a57c3
6278 changed files with 866081 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2026 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();
/************************************************************************************************************************/
}
}