using System.Collections.Generic;
namespace PKHeX.Core
{
///
/// String providing interface with minimal support for game strings.
///
public interface IBasicStrings
{
IReadOnlyList Species { get; }
IReadOnlyList Item { get; }
IReadOnlyList Move { get; }
IReadOnlyList Ability { get; }
IReadOnlyList Types { get; }
IReadOnlyList Natures { get; }
///
/// Name an Egg has when obtained on this language.
///
string EggName { get; }
}
}