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

25 lines
907 B
C#
Raw 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 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; }
/************************************************************************************************************************/
}
}