// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2023 Kybernetik //
namespace Animancer
{
/// Exposes a object that can be used for dictionaries and hash sets.
///
/// Documentation: Keys
///
/// https://kybernetik.com.au/animancer/api/Animancer/IHasKey
///
public interface IHasKey
{
/************************************************************************************************************************/
/// An identifier object that can be used for dictionaries and hash sets.
object Key { get; }
/************************************************************************************************************************/
}
}