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

21 lines
340 B
C#
Raw Normal View History

using System;
using PKHeX.Core;
namespace PKHeX.WinForms.Controls;
public interface IMainEditor : IPKMView
{
PKM Entity { get; }
SaveFile RequestSaveFile { get; }
void UpdateIVsGB(bool skipForm);
void ChangeNature(int newNature);
}
[Flags]
public enum UpdateLegalityArgs
{
None,
SkipMoveRepopulation = 1 << 0,
}