mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 08:53:28 +00:00
16 lines
307 B
C#
16 lines
307 B
C#
|
using PKHeX.Core;
|
||
|
|
||
|
namespace PKHeX.WinForms.Controls
|
||
|
{
|
||
|
public interface IMainEditor
|
||
|
{
|
||
|
bool Unicode { get; }
|
||
|
bool FieldsInitialized { get; }
|
||
|
bool ChangingFields { get; set; }
|
||
|
bool HaX { get; }
|
||
|
|
||
|
PKM pkm { get; }
|
||
|
|
||
|
void UpdateIVsGB(bool skipForm);
|
||
|
}
|
||
|
}
|