mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
99a4c55579
party stats set when setting a slot to a save file simplify set/delete slotchange duplicate logic suggest better met locations beyond VC transfers hatching a gen6 egg applies memories automatically
16 lines
No EOL
307 B
C#
16 lines
No EOL
307 B
C#
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);
|
|
}
|
|
} |