// Animancer // Copyright 2020 Kybernetik //
namespace Animancer
{
///
/// Exposes a object that can be used for dictionaries and hash sets.
///
public interface IHasKey
{
/************************************************************************************************************************/
/// An identifier object that can be used for dictionaries and hash sets.
object Key { get; }
/************************************************************************************************************************/
}
}