mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00: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; }
|
|||
|
}
|
|||
|
}
|