mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
1fe304e78f
add common interface https://projectpokemon.org/home/forums/topic/47295-bug-event-golduck-name-not-matching-species/
9 lines
170 B
C#
9 lines
170 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal interface ILangNick
|
|
{
|
|
string Nickname { get; }
|
|
bool IsNicknamed { get; }
|
|
int Language { get; }
|
|
}
|
|
}
|