PKHeX/PKHeX.Core/Game/IBasicStrings.cs

23 lines
633 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PKHeX.Core
2018-04-21 09:55:27 -07:00
{
2019-04-09 20:57:44 -07:00
/// <summary>
/// String providing interface with minimal support for game strings.
/// </summary>
2018-04-21 09:55:27 -07:00
public interface IBasicStrings
{
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-09 20:57:44 -07:00
/// <summary>
/// Name an Egg has when obtained on this language.
/// </summary>
2018-04-21 09:55:27 -07:00
string EggName { get; }
}
}