mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
12 lines
285 B
C#
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; }
|
|
}
|