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,25 @@
// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2026 Kybernetik //
namespace Animancer
{
/// <summary>An object which has an <see cref="AnimancerEvent.Sequence.Serializable"/>.</summary>
/// <remarks>
/// <strong>Documentation:</strong>
/// <see href="https://kybernetik.com.au/animancer/docs/manual/events/animancer">
/// Animancer Events</see>
/// </remarks>
/// https://kybernetik.com.au/animancer/api/Animancer/IHasEvents
public interface IHasEvents
{
/************************************************************************************************************************/
/// <summary>Events which will be triggered as the animation plays.</summary>
AnimancerEvent.Sequence Events { get; }
/// <summary>Events which will be triggered as the animation plays.</summary>
AnimancerEvent.Sequence.Serializable SerializedEvents { get; set; }
/************************************************************************************************************************/
}
}