mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 22:29:52 -05:00
11 lines
223 B
C#
11 lines
223 B
C#
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
{
|
|
public interface IMainEditor : IPKMView
|
|
{
|
|
void UpdateIVsGB(bool skipForm);
|
|
PKM Entity { get; }
|
|
SaveFile RequestSaveFile { get; }
|
|
}
|
|
} |