mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
18 lines
375 B
C#
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);
|
|
}
|