PKHeX/PKHeX.Core/Game/IBasicStrings.cs
Kurt 9f8edc89bf Refactoring
put some string[] behind IReadOnlyList to prevent any consumer from
modifying it
2018-06-30 09:59:48 -07:00

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; }
}
}