mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-18 14:28:33 +00:00
11 lines
No EOL
220 B
C#
11 lines
No EOL
220 B
C#
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
{
|
|
public interface IMainEditor : IPKMView
|
|
{
|
|
void UpdateIVsGB(bool skipForm);
|
|
PKM pkm { get; }
|
|
SaveFile RequestSaveFile { get; }
|
|
}
|
|
} |