mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
93c4ec9fec
Handling for gen3 deoxys :) Closes #2082
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; }
|
|
}
|
|
} |