Further work on static side

This commit is contained in:
2024-07-20 16:12:39 +02:00
parent 3845f91601
commit 1b501dee7e
29 changed files with 670 additions and 155 deletions

View File

@@ -0,0 +1,12 @@
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; }
}