You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/Plugins/Animancer/Internal/Interfaces/IHasKey.cs

19 lines
634 B
C#

1 month ago
// Animancer // Copyright 2020 Kybernetik //
namespace Animancer
{
/// <summary>
/// Exposes a <see cref="Key"/> object that can be used for dictionaries and hash sets.
/// </summary>
public interface IHasKey
{
/************************************************************************************************************************/
/// <summary>An identifier object that can be used for dictionaries and hash sets.</summary>
object Key { get; }
/************************************************************************************************************************/
}
}