mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-07 14:57:19 -05:00
16 lines
416 B
C#
16 lines
416 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
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; }
|
|
string EggName { get; }
|
|
}
|
|
}
|