PKHeX/PKHeX.Core/Editing/Saves/IBoxManip.cs

16 lines
335 B
C#
Raw Normal View History

using System;
namespace PKHeX.Core
{
public interface IBoxManip
{
BoxManipType Type { get; }
Func<SaveFile, bool> Usable { get; set; }
string GetPrompt(bool all);
string GetFail(bool all);
string GetSuccess(bool all);
int Execute(SaveFile SAV, BoxManipParam param);
}
}