PKHeX/PKHeX.Core/Game/IBasicStrings.cs
2018-04-21 09:55:27 -07:00

13 lines
303 B
C#

namespace PKHeX.Core
{
public interface IBasicStrings
{
string[] Species { get; }
string[] Item { get; }
string[] Move { get; }
string[] Ability { get; }
string[] Types { get; }
string[] Natures { get; }
string EggName { get; }
}
}