PKHeX/PKHeX.Core/PKM/Interfaces/IHandlerLanguage.cs
2022-08-21 01:39:16 -07:00

12 lines
285 B
C#

namespace PKHeX.Core;
/// <summary>
/// Exposes info about the latest handler (not OT) language.
/// </summary>
public interface IHandlerLanguage
{
/// <summary>
/// Trainer game language of the latest handler (not OT).
/// </summary>
byte HT_Language { get; set; }
}