mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
11 lines
255 B
C#
11 lines
255 B
C#
namespace PKHeX.Core;
|
|
|
|
internal interface ILangNicknamedTemplate
|
|
{
|
|
string GetNickname(int language);
|
|
bool GetIsNicknamed(int language);
|
|
|
|
bool CanBeAnyLanguage();
|
|
bool CanHaveLanguage(int language);
|
|
bool CanHandleOT(int language);
|
|
}
|