PKHeX/PKHeX.Core/Game/IBasicStrings.cs

16 lines
416 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PKHeX.Core
2018-04-21 16:55:27 +00: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; }
2018-04-21 16:55:27 +00:00
string EggName { get; }
}
}