PKHeX/PKHeX.Core/Game/IBasicStrings.cs

22 lines
567 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PKHeX.Core;
/// <summary>
/// String providing interface with minimal support for game strings.
/// </summary>
public interface IBasicStrings
2018-04-21 16:55:27 +00:00
{
IReadOnlyList<string> Species { get; }
IReadOnlyList<string> Item { get; }
IReadOnlyList<string> Move { get; }
IReadOnlyList<string> Ability { get; }
IReadOnlyList<string> Types { get; }
IReadOnlyList<string> Natures { get; }
2019-04-10 03:57:44 +00:00
/// <summary>
/// Name an Egg has when obtained on this language.
2019-04-10 03:57:44 +00:00
/// </summary>
string EggName { get; }
2018-04-21 16:55:27 +00:00
}