mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
9f8edc89bf
put some string[] behind IReadOnlyList to prevent any consumer from modifying it
15 lines
416 B
C#
15 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; }
|
|
}
|
|
}
|