You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
881 B
21 lines
881 B
// Animancer // https://kybernetik.com.au/animancer // Copyright 2021 Kybernetik // |
|
|
|
namespace Animancer |
|
{ |
|
/// <summary>Exposes a <see cref="Key"/> object that can be used for dictionaries and hash sets.</summary> |
|
/// <remarks> |
|
/// Documentation: <see href="https://kybernetik.com.au/animancer/docs/manual/playing/states#keys">Keys</see> |
|
/// </remarks> |
|
/// https://kybernetik.com.au/animancer/api/Animancer/IHasKey |
|
/// |
|
public interface IHasKey |
|
{ |
|
/************************************************************************************************************************/ |
|
|
|
/// <summary>An identifier object that can be used for dictionaries and hash sets.</summary> |
|
object Key { get; } |
|
|
|
/************************************************************************************************************************/ |
|
} |
|
} |
|
|
|
|