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,24 @@
// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2026 Kybernetik //
namespace Animancer
{
/// <summary>
/// An object with a <see cref="Key"/> which can be used in dictionaries and hash sets.
/// </summary>
/// <remarks>
/// <strong>Documentation:</strong>
/// <see href="https://kybernetik.com.au/animancer/docs/manual/playing/keys">
/// Keys</see>
/// </remarks>
/// https://kybernetik.com.au/animancer/api/Animancer/IHasKey
public interface IHasKey
{
/************************************************************************************************************************/
/// <summary>A key which can be used in dictionaries and hash sets.</summary>
object Key { get; }
/************************************************************************************************************************/
}
}