// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
namespace Animancer
{
///
/// An object with a which can be used in dictionaries and hash sets.
///
///
/// Documentation:
///
/// Keys
///
/// https://kybernetik.com.au/animancer/api/Animancer/IHasKey
public interface IHasKey
{
/************************************************************************************************************************/
/// A key which can be used in dictionaries and hash sets.
object Key { get; }
/************************************************************************************************************************/
}
}