PKHeX/PKHeX.Core/Game/IBasicStrings.cs

14 lines
303 B
C#
Raw Normal View History

2018-04-21 16:55:27 +00:00
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; }
}
}