mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-07 14:57:19 -05:00
14 lines
303 B
C#
14 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; }
|
|
}
|
|
}
|