PKHeX/PKHeX.Core/Editing/Saves/IBoxManip.cs
Kurt d7e1f65faa Add some xmldoc, file scoped namespaces
Not much of a git diff history for these files so I don't mind them being reformatted.
2021-12-09 18:58:30 -08:00

18 lines
375 B
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// Base interface for all box manipulation actions.
/// </summary>
public interface IBoxManip
{
BoxManipType Type { get; }
Func<SaveFile, bool> Usable { get; }
string GetPrompt(bool all);
string GetFail(bool all);
string GetSuccess(bool all);
int Execute(SaveFile sav, BoxManipParam param);
}