12 lines
229 B
C#
12 lines
229 B
C#
|
namespace PkmnLib.Static.Utils;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Indicates that a value has a name.
|
||
|
/// </summary>
|
||
|
public interface INamedValue
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The name of the value.
|
||
|
/// </summary>
|
||
|
StringKey Name { get; }
|
||
|
}
|