PKHeX/PKHeX.WinForms/Controls/PKM Editor/IMainEditor.cs

16 lines
307 B
C#
Raw Normal View History

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);
}
}