PKHeX/PKHeX.Core/PKM/Interfaces/IHandlerLanguage.cs

13 lines
285 B
C#
Raw Normal View History

2022-08-21 08:39:16 +00:00
namespace PKHeX.Core;
2022-08-21 08:39:16 +00:00
/// <summary>
/// Exposes info about the latest handler (not OT) language.
/// </summary>
public interface IHandlerLanguage
2019-11-16 01:34:18 +00:00
{
2022-08-21 08:39:16 +00:00
/// <summary>
/// Trainer game language of the latest handler (not OT).
/// </summary>
byte HT_Language { get; set; }
}